From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tejun Heo Subject: [PATCH v2.6.36-rc7] net/neighbour: cancel_delayed_work() + flush_scheduled_work() -> cancel_delayed_work_sync() Date: Tue, 19 Oct 2010 18:04:42 +0200 Message-ID: <4CBDC19A.60709@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit To: "David S. Miller" , "netdev@vger.kernel.org" , lkml Return-path: Received: from hera.kernel.org ([140.211.167.34]:34512 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753667Ab0JSQEo (ORCPT ); Tue, 19 Oct 2010 12:04:44 -0400 Sender: netdev-owner@vger.kernel.org List-ID: flush_scheduled_work() is going away. Prepare for it. Signed-off-by: Tejun Heo --- net/core/neighbour.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: work/net/core/neighbour.c =================================================================== --- work.orig/net/core/neighbour.c +++ work/net/core/neighbour.c @@ -1486,8 +1486,7 @@ int neigh_table_clear(struct neigh_table struct neigh_table **tp; /* It is not clean... Fix it to unload IPv6 module safely */ - cancel_delayed_work(&tbl->gc_work); - flush_scheduled_work(); + cancel_delayed_work_sync(&tbl->gc_work); del_timer_sync(&tbl->proxy_timer); pneigh_queue_purge(&tbl->proxy_queue); neigh_ifdown(tbl, NULL);