From: Tejun Heo Date: Fri, 25 Apr 2008 18:16:04 +0000 (+0900) Subject: klist: implement KLIST_INIT() and DEFINE_KLIST() X-Git-Tag: v2.6.26-rc1~99^2~9 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=1da43e4a9ee942c9c967dbe8839476571df0c3ed;p=safe%2Fjmp%2Flinux-2.6 klist: implement KLIST_INIT() and DEFINE_KLIST() klist is missing static initializers and definition helper. Add them. Signed-off-by: Tejun Heo Cc: Peter Zijlstra Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/klist.h b/include/linux/klist.h index 7407125..a119c0d 100644 --- a/include/linux/klist.h +++ b/include/linux/klist.h @@ -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 *));