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@twitter.com> Cc: David Mackey <tdmackey@twitter.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d9b8706843
commit
7cecb523ad
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue