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
|
@ -10894,10 +10894,8 @@ static inline void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
|
|||
do { \
|
||||
u32 len = be32_to_cpu(fw_hdr->arr.len); \
|
||||
bp->arr = kmalloc(len, GFP_KERNEL); \
|
||||
if (!bp->arr) { \
|
||||
pr_err("Failed to allocate %d bytes for "#arr"\n", len); \
|
||||
if (!bp->arr) \
|
||||
goto lbl; \
|
||||
} \
|
||||
func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
|
||||
(u8 *)bp->arr, len); \
|
||||
} while (0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue