This is a note to let you know that I've just added the patch titled 6lowpan: Remove __init tag from lowpan_netlink_fini(). to the 3.8-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: 6lowpan-remove-__init-tag-from-lowpan_netlink_fini.patch and it can be found in the queue-3.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a07fdceccf9d9f1b87f781e9a87662182e590d70 Mon Sep 17 00:00:00 2001 From: "David S. Miller" <davem@xxxxxxxxxxxxx> Date: Wed, 6 Feb 2013 15:54:38 -0500 Subject: 6lowpan: Remove __init tag from lowpan_netlink_fini(). From: "David S. Miller" <davem@xxxxxxxxxxxxx> commit a07fdceccf9d9f1b87f781e9a87662182e590d70 upstream. It's called from both __init and __exit code, so neither tag is appropriate. Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/ieee802154/6lowpan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/ieee802154/6lowpan.c +++ b/net/ieee802154/6lowpan.c @@ -1234,7 +1234,7 @@ static inline int __init lowpan_netlink_ return rtnl_link_register(&lowpan_link_ops); } -static inline void __init lowpan_netlink_fini(void) +static inline void lowpan_netlink_fini(void) { rtnl_link_unregister(&lowpan_link_ops); } Patches currently in stable-queue which might be from davem@xxxxxxxxxxxxx are queue-3.8/tg3-update-link_up-flag-for-phylib-devices.patch queue-3.8/6lowpan-remove-__init-tag-from-lowpan_netlink_fini.patch queue-3.8/proc-connector-reject-unprivileged-listener-bumps.patch queue-3.8/usbnet-smsc95xx-fix-suspend-failure.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html