staging: rtl8723au: c2h_wk_callback(): Use GFP_KERNEL, and check return value
authorJes Sorensen <Jes.Sorensen@redhat.com>
Sat, 26 Apr 2014 16:54:54 +0000 (18:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 26 Apr 2014 17:16:12 +0000 (10:16 -0700)
It is safe to use GFP_KERNEL in a workqueue handler, and check the
return value. If the malloc fails, skip and try again.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_cmd.c

index cb15ddaae12ea87e1698525dc6d0dbf43e90b244..068374a911fc940abb85e737fa0edc065d1e6eb3 100644 (file)
@@ -1536,7 +1536,9 @@ static void c2h_wk_callback(struct work_struct *work)
                        /* This C2H event is read, clear it */
                        c2h_evt_clear23a(adapter);
                } else if ((c2h_evt = (struct c2h_evt_hdr *)
-                           kmalloc(16, GFP_ATOMIC))) {
+                           kmalloc(16, GFP_KERNEL))) {
+                       if (!c2h_evt)
+                               continue;
                        /* This C2H event is not read, read & clear now */
                        if (c2h_evt_read23a(adapter, (u8*)c2h_evt) != _SUCCESS)
                                continue;
This page took 0.029523 seconds and 5 git commands to generate.