diff options
| author | Joe Perches <joe@perches.com> | 2012-01-29 07:56:23 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-01-31 16:20:21 -0500 |
| commit | e404decb0fb017be80552adee894b35307b6c7b4 (patch) | |
| tree | 19b2324328eb1f8cef599f9f164dc9ca6e5699c9 /drivers/net/bonding | |
| parent | 5f3d9cb2962967d9d7e03abb4a7ca275a9a3fea5 (diff) | |
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>
Diffstat (limited to 'drivers/net/bonding')
| -rw-r--r-- | drivers/net/bonding/bond_alb.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index f820b26b9db3..9abfde479316 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
| @@ -180,11 +180,9 @@ static int tlb_initialize(struct bonding *bond) | |||
| 180 | int i; | 180 | int i; |
| 181 | 181 | ||
| 182 | new_hashtbl = kzalloc(size, GFP_KERNEL); | 182 | new_hashtbl = kzalloc(size, GFP_KERNEL); |
| 183 | if (!new_hashtbl) { | 183 | if (!new_hashtbl) |
| 184 | pr_err("%s: Error: Failed to allocate TLB hash table\n", | ||
| 185 | bond->dev->name); | ||
| 186 | return -1; | 184 | return -1; |
| 187 | } | 185 | |
| 188 | _lock_tx_hashtbl_bh(bond); | 186 | _lock_tx_hashtbl_bh(bond); |
| 189 | 187 | ||
| 190 | bond_info->tx_hashtbl = new_hashtbl; | 188 | bond_info->tx_hashtbl = new_hashtbl; |
| @@ -784,11 +782,9 @@ static int rlb_initialize(struct bonding *bond) | |||
| 784 | int i; | 782 | int i; |
| 785 | 783 | ||
| 786 | new_hashtbl = kmalloc(size, GFP_KERNEL); | 784 | new_hashtbl = kmalloc(size, GFP_KERNEL); |
| 787 | if (!new_hashtbl) { | 785 | if (!new_hashtbl) |
| 788 | pr_err("%s: Error: Failed to allocate RLB hash table\n", | ||
| 789 | bond->dev->name); | ||
| 790 | return -1; | 786 | return -1; |
| 791 | } | 787 | |
| 792 | _lock_rx_hashtbl_bh(bond); | 788 | _lock_rx_hashtbl_bh(bond); |
| 793 | 789 | ||
| 794 | bond_info->rx_hashtbl = new_hashtbl; | 790 | bond_info->rx_hashtbl = new_hashtbl; |
