Skip to content

Commit

Permalink
klist: implement KLIST_INIT() and DEFINE_KLIST()
Browse files Browse the repository at this point in the history
klist is missing static initializers and definition helper.  Add them.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Tejun Heo authored and Greg Kroah-Hartman committed Apr 30, 2008
1 parent 40a2159 commit 1da43e4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/linux/klist.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ struct klist {
void (*put)(struct klist_node *);
};

#define KLIST_INIT(_name, _get, _put) \
{ .k_lock = __SPIN_LOCK_UNLOCKED(_name.k_lock), \
.k_list = LIST_HEAD_INIT(_name.k_list), \
.get = _get, \
.put = _put, }

#define DEFINE_KLIST(_name, _get, _put) \
struct klist _name = KLIST_INIT(_name, _get, _put)

extern void klist_init(struct klist * k, void (*get)(struct klist_node *),
void (*put)(struct klist_node *));
Expand Down

0 comments on commit 1da43e4

Please sign in to comment.