Messages in this thread Patch in this message |  | | | Date | Fri, 06 Nov 2009 22:41:15 -0000 | | From | Thomas Gleixner <> | | Subject | [patch 03/16] net: Replace old style lock initializer |
SPIN_LOCK_UNLOCKED is deprecated. Use DEFINE_SPINLOCK instead.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: netdev@vger.kernel.org Cc: David S. Miller <davem@davemloft.net> --- net/core/drop_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/net/core/drop_monitor.c =================================================================== --- linux-2.6.orig/net/core/drop_monitor.c +++ linux-2.6/net/core/drop_monitor.c @@ -41,7 +41,7 @@ static void send_dm_alert(struct work_st * netlink alerts */ static int trace_state = TRACE_OFF; -static spinlock_t trace_state_lock = SPIN_LOCK_UNLOCKED; +static DEFINE_SPINLOCK(trace_state_lock); struct per_cpu_dm_data { struct work_struct dm_alert_work;
|  |