[PATCH] Trivial C99 change to rcupdate.h
From: Art Haas (ahaas_at_airmail.net)
Date: 12/31/03
- Previous message: William Lee Irwin III: "Re: 2.6.1-rc1 [resend]"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 31 Dec 2003 09:06:08 -0600 To: linux-kernel@vger.kernel.org
Hi.
Here's a trivial patch that replaces the GNU initializers with
C99 initializers.
Art Haas
===== include/linux/rcupdate.h 1.4 vs edited =====
--- 1.4/include/linux/rcupdate.h Thu Oct 2 02:12:13 2003
+++ edited/include/linux/rcupdate.h Tue Dec 30 19:54:24 2003
@@ -55,7 +55,7 @@
};
#define RCU_HEAD_INIT(head) \
- { list: LIST_HEAD_INIT(head.list), func: NULL, arg: NULL }
+ { .list = LIST_HEAD_INIT(head.list), .func = NULL, .arg = NULL }
#define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT(head)
#define INIT_RCU_HEAD(ptr) do { \
INIT_LIST_HEAD(&(ptr)->list); (ptr)->func = NULL; (ptr)->arg = NULL; \
-- Man once surrendering his reason, has no remaining guard against absurdities the most monstrous, and like a ship without rudder, is the sport of every wind. -Thomas Jefferson to James Smith, 1822 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Previous message: William Lee Irwin III: "Re: 2.6.1-rc1 [resend]"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]