projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b77357b
)
cxgb4: correctly handling failed allocation
author
Insu Yun
<wuninsu@gmail.com>
Tue, 29 Dec 2015 22:20:11 +0000
(17:20 -0500)
committer
David S. Miller
<davem@davemloft.net>
Mon, 4 Jan 2016 22:18:42 +0000
(17:18 -0500)
Since t4_alloc_mem can be failed in memory pressure,
if not properly handled, NULL dereference could be happened.
Signed-off-by: Insu Yun <wuninsu@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/clip_tbl.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/chelsio/cxgb4/clip_tbl.c
b/drivers/net/ethernet/chelsio/cxgb4/clip_tbl.c
index
c308429
..
11dd91e
100644
(file)
--- a/
drivers/net/ethernet/chelsio/cxgb4/clip_tbl.c
+++ b/
drivers/net/ethernet/chelsio/cxgb4/clip_tbl.c
@@
-295,6
+295,10
@@
struct clip_tbl *t4_init_clip_tbl(unsigned int clipt_start,
INIT_LIST_HEAD(&ctbl->hash_list[i]);
cl_list = t4_alloc_mem(clipt_size*sizeof(struct clip_entry));
+ if (!cl_list) {
+ t4_free_mem(ctbl);
+ return NULL;
+ }
ctbl->cl_list = (void *)cl_list;
for (i = 0; i < clipt_size; i++) {