From: Liam R. Howlett Date: Thu, 10 Jan 2019 19:57:47 +0000 (-0500) Subject: maple_tree: whitespace fix X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9d8d83215cb34d0230c77986e3e0d0dc687bab48;p=users%2Fjedix%2Flinux-maple.git maple_tree: whitespace fix Signed-off-by: Liam R. Howlett --- diff --git a/lib/maple_tree.c b/lib/maple_tree.c index 79c86ce57544..343a7996765b 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -71,6 +71,7 @@ static inline struct maple_node *mt_safe_root(const void *entry) { return (struct maple_node *)((unsigned long)entry & ~2); } + static inline void *mt_mk_root(const struct maple_node *node) { @@ -90,6 +91,7 @@ static inline unsigned int mt_slot_mask(struct maple_node *node) bitmask |= 0x04; // Set bit 2. return bitmask; } + static inline unsigned int mt_slot_shift(struct maple_node *node) { if (mt_node_type(node) == MAPLE_RANGE16_SLOTS) @@ -197,6 +199,7 @@ static inline struct maple_node *ma_next_alloc(struct ma_state *ms) return mn; } + static void ma_new_node(struct ma_state *ms, gfp_t gfp) { struct maple_node *mn, *smn;