]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
maple_tree: whitespace fix
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Thu, 10 Jan 2019 19:57:47 +0000 (14:57 -0500)
committerLiam R. Howlett <Liam.Howlett@Oracle.com>
Wed, 31 Jul 2019 14:52:35 +0000 (10:52 -0400)
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
lib/maple_tree.c

index 79c86ce57544186a6ac7cd20a11a2e685eac44ce..343a7996765b4bf6b383a04b849098717f034bd8 100644 (file)
@@ -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;