Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 862548da authored by Ira Weiny's avatar Ira Weiny Committed by Doug Ledford
Browse files

IB/hfi1: Add parameter names to callback declarations



This makes it more clear what these functions are
operating on.

Reviewed-by: default avatarDean Luick <dean.luick@intel.com>
Signed-off-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent ac335e7e
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -57,11 +57,12 @@ struct mmu_rb_node {
};

struct mmu_rb_ops {
	bool (*filter)(struct mmu_rb_node *, unsigned long, unsigned long);
	int (*insert)(struct rb_root *, struct mmu_rb_node *);
	void (*remove)(struct rb_root *, struct mmu_rb_node *,
		       struct mm_struct *);
	int (*invalidate)(struct rb_root *, struct mmu_rb_node *);
	bool (*filter)(struct mmu_rb_node *node, unsigned long addr,
		       unsigned long len);
	int (*insert)(struct rb_root *root, struct mmu_rb_node *mnode);
	void (*remove)(struct rb_root *root, struct mmu_rb_node *mnode,
		       struct mm_struct *mm);
	int (*invalidate)(struct rb_root *root, struct mmu_rb_node *node);
};

int hfi1_mmu_rb_register(struct rb_root *root, struct mmu_rb_ops *ops);