mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 22:21:21 +00:00
drivers/net: Remove unnecessary k.alloc/v.alloc OOM messages
alloc failures use dump_stack so emitting an additional out-of-memory message is an unnecessary duplication. Remove the allocation failure messages. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5f3d9cb296
commit
e404decb0f
60 changed files with 77 additions and 233 deletions
|
@ -1639,10 +1639,8 @@ static int __init netback_init(void)
|
|||
|
||||
xen_netbk_group_nr = num_online_cpus();
|
||||
xen_netbk = vzalloc(sizeof(struct xen_netbk) * xen_netbk_group_nr);
|
||||
if (!xen_netbk) {
|
||||
printk(KERN_ALERT "%s: out of memory\n", __func__);
|
||||
if (!xen_netbk)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
for (group = 0; group < xen_netbk_group_nr; group++) {
|
||||
struct xen_netbk *netbk = &xen_netbk[group];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue