[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1340843527-9962-1-git-send-email-vlee@twitter.com>
Date: Wed, 27 Jun 2012 17:32:07 -0700
From: Vinson Lee <vlee@...tter.com>
To: "David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>, <mirq-linux@...e.qmqm.pl>,
Jiri Pirko <jpirko@...hat.com>,
Tom Herbert <therbert@...gle.com>
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
Vinson Lee <vlee@...tter.com>,
David Mackey <tdmackey@...tter.com>
Subject: [PATCH] net: Downgrade CAP_SYS_MODULE deprecated message from error to warning.
Make logging level consistent with other deprecation messages in net
subsystem.
Signed-off-by: Vinson Lee <vlee@...tter.com>
Cc: David Mackey <tdmackey@...tter.com>
---
net/core/dev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index cd09819..b19a361 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1136,8 +1136,8 @@ void dev_load(struct net *net, const char *name)
no_module = request_module("netdev-%s", name);
if (no_module && capable(CAP_SYS_MODULE)) {
if (!request_module("%s", name))
- pr_err("Loading kernel module for a network device with CAP_SYS_MODULE (deprecated). Use CAP_NET_ADMIN and alias netdev-%s instead.\n",
- name);
+ pr_warn("Loading kernel module for a network device with CAP_SYS_MODULE (deprecated). Use CAP_NET_ADMIN and alias netdev-%s instead.\n",
+ name);
}
}
EXPORT_SYMBOL(dev_load);
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists