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:
committed by
David S. Miller
parent
d9b8706843
commit
7cecb523ad
@@ -1136,7 +1136,7 @@ void dev_load(struct net *net, const char *name)
|
|||||||
no_module = request_module("netdev-%s", name);
|
no_module = request_module("netdev-%s", name);
|
||||||
if (no_module && capable(CAP_SYS_MODULE)) {
|
if (no_module && capable(CAP_SYS_MODULE)) {
|
||||||
if (!request_module("%s", name))
|
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",
|
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);
|
name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user