Skip to content

Commit

Permalink
staging: brcm80211: optimize kmalloc to kzalloc
Browse files Browse the repository at this point in the history
Use kzalloc rather than kmalloc followed by memset with 0.
Found by coccinelle.

Signed-off-by: Alexander Beregalov <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
alexb0 authored and gregkh committed Mar 9, 2011
1 parent f4a0e6b commit 12d0eb4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
4 changes: 1 addition & 3 deletions drivers/staging/brcm80211/brcmfmac/dhd_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -1931,14 +1931,12 @@ dhd_pub_t *dhd_attach(struct dhd_bus *bus, uint bus_hdrlen)
}

/* Allocate primary dhd_info */
dhd = kmalloc(sizeof(dhd_info_t), GFP_ATOMIC);
dhd = kzalloc(sizeof(dhd_info_t), GFP_ATOMIC);
if (!dhd) {
DHD_ERROR(("%s: OOM - alloc dhd_info\n", __func__));
goto fail;
}

memset(dhd, 0, sizeof(dhd_info_t));

/*
* Save the dhd_info into the priv
*/
Expand Down
6 changes: 2 additions & 4 deletions drivers/staging/brcm80211/brcmfmac/dhd_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2528,11 +2528,10 @@ static int dhdsdio_write_vars(dhd_bus_t *bus)
varaddr = (bus->ramsize - 4) - varsize;

if (bus->vars) {
vbuffer = kmalloc(varsize, GFP_ATOMIC);
vbuffer = kzalloc(varsize, GFP_ATOMIC);
if (!vbuffer)
return BCME_NOMEM;

memset(vbuffer, 0, varsize);
memcpy(vbuffer, bus->vars, bus->varsz);

/* Write the vars list */
Expand Down Expand Up @@ -5258,13 +5257,12 @@ dhdsdio_probe_attach(struct dhd_bus *bus, void *sdh, void *regsva, u16 devid)
udelay(65);

for (fn = 0; fn <= numfn; fn++) {
cis[fn] = kmalloc(SBSDIO_CIS_SIZE_LIMIT, GFP_ATOMIC);
cis[fn] = kzalloc(SBSDIO_CIS_SIZE_LIMIT, GFP_ATOMIC);
if (!cis[fn]) {
DHD_INFO(("dhdsdio_probe: fn %d cis malloc "
"failed\n", fn));
break;
}
memset(cis[fn], 0, SBSDIO_CIS_SIZE_LIMIT);

err = bcmsdh_cis_read(sdh, fn, cis[fn],
SBSDIO_CIS_SIZE_LIMIT);
Expand Down
9 changes: 3 additions & 6 deletions drivers/staging/brcm80211/brcmfmac/wl_iw.c
Original file line number Diff line number Diff line change
Expand Up @@ -862,10 +862,9 @@ wl_iw_get_aplist(struct net_device *dev,
if (!extra)
return -EINVAL;

list = kmalloc(buflen, GFP_KERNEL);
list = kzalloc(buflen, GFP_KERNEL);
if (!list)
return -ENOMEM;
memset(list, 0, buflen);
list->buflen = cpu_to_le32(buflen);
error = dev_wlc_ioctl(dev, WLC_SCAN_RESULTS, list, buflen);
if (error) {
Expand Down Expand Up @@ -3667,11 +3666,10 @@ int wl_iw_attach(struct net_device *dev, void *dhdp)
params_size =
(WL_SCAN_PARAMS_FIXED_SIZE + offsetof(wl_iscan_params_t, params));
#endif
iscan = kmalloc(sizeof(iscan_info_t), GFP_KERNEL);
iscan = kzalloc(sizeof(iscan_info_t), GFP_KERNEL);

if (!iscan)
return -ENOMEM;
memset(iscan, 0, sizeof(iscan_info_t));

iscan->iscan_ex_params_p = kmalloc(params_size, GFP_KERNEL);
if (!iscan->iscan_ex_params_p)
Expand Down Expand Up @@ -3705,11 +3703,10 @@ int wl_iw_attach(struct net_device *dev, void *dhdp)
priv_dev = dev;
MUTEX_LOCK_SOFTAP_SET_INIT(iw->pub);
#endif
g_scan = kmalloc(G_SCAN_RESULTS, GFP_KERNEL);
g_scan = kzalloc(G_SCAN_RESULTS, GFP_KERNEL);
if (!g_scan)
return -ENOMEM;

memset(g_scan, 0, G_SCAN_RESULTS);
g_scan_specified_ssid = 0;

return 0;
Expand Down
4 changes: 1 addition & 3 deletions drivers/staging/brcm80211/brcmsmac/wl_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -1634,14 +1634,12 @@ struct wl_timer *wl_init_timer(struct wl_info *wl, void (*fn) (void *arg),
{
struct wl_timer *t;

t = kmalloc(sizeof(struct wl_timer), GFP_ATOMIC);
t = kzalloc(sizeof(struct wl_timer), GFP_ATOMIC);
if (!t) {
WL_ERROR("wl%d: wl_init_timer: out of memory\n", wl->pub->unit);
return 0;
}

memset(t, 0, sizeof(struct wl_timer));

init_timer(&t->timer);
t->timer.data = (unsigned long) t;
t->timer.function = wl_timer;
Expand Down

0 comments on commit 12d0eb4

Please sign in to comment.