Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228056
b: refs/heads/master
c: 5b84cc7
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Nov 10, 2010
1 parent 35533fc commit 591ebb4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4eb28f7197a2cbaf7a9be778d429a5fb9bb6172e
refs/heads/master: 5b84cc781058bb452f869d84bb24442ec51948c4
4 changes: 1 addition & 3 deletions trunk/drivers/staging/comedi/drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,8 @@ int comedi_buf_alloc(struct comedi_device *dev, struct comedi_subdevice *s,
struct page **pages = NULL;

async->buf_page_list =
vmalloc(sizeof(struct comedi_buf_page) * n_pages);
vzalloc(sizeof(struct comedi_buf_page) * n_pages);
if (async->buf_page_list) {
memset(async->buf_page_list, 0,
sizeof(struct comedi_buf_page) * n_pages);
pages = vmalloc(sizeof(struct page *) * n_pages);
}
if (pages) {
Expand Down
4 changes: 1 addition & 3 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2283,9 +2283,7 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
IMR_TXFOVW | IMR_BcnInt | IMR_TBDOK | IMR_TBDER);

priv->AcmControl = 0;
priv->pFirmware = (rt_firmware*)vmalloc(sizeof(rt_firmware));
if (priv->pFirmware)
memset(priv->pFirmware, 0, sizeof(rt_firmware));
priv->pFirmware = vzalloc(sizeof(rt_firmware));

/* rx related queue */
skb_queue_head_init(&priv->rx_queue);
Expand Down
5 changes: 2 additions & 3 deletions trunk/drivers/staging/udlfb/udlfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1163,14 +1163,13 @@ static int dlfb_realloc_framebuffer(struct dlfb_data *dev, struct fb_info *info)
* But with imperfect damage info we may send pixels over USB
* that were, in fact, unchanged - wasting limited USB bandwidth
*/
new_back = vmalloc(new_len);
new_back = vzalloc(new_len);
if (!new_back)
dl_info("No shadow/backing buffer allcoated\n");
dl_info("No shadow/backing buffer allocated\n");
else {
if (dev->backing_buffer)
vfree(dev->backing_buffer);
dev->backing_buffer = new_back;
memset(dev->backing_buffer, 0, new_len);
}
}

Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/staging/xgifb/XGI_main_26.c
Original file line number Diff line number Diff line change
Expand Up @@ -2180,8 +2180,7 @@ static int XGIfb_heap_init(void)

#ifndef AGPOFF
if (XGIfb_queuemode == AGP_CMD_QUEUE) {
agp_info = vmalloc(sizeof(*agp_info));
memset((void *)agp_info, 0x00, sizeof(*agp_info));
agp_info = vzalloc(sizeof(*agp_info));
agp_copy_info(agp_info);

agp_backend_acquire();
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/staging/zram/zram_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -533,15 +533,14 @@ int zram_init_device(struct zram *zram)
}

num_pages = zram->disksize >> PAGE_SHIFT;
zram->table = vmalloc(num_pages * sizeof(*zram->table));
zram->table = vzalloc(num_pages * sizeof(*zram->table));
if (!zram->table) {
pr_err("Error allocating zram address table\n");
/* To prevent accessing table entries during cleanup */
zram->disksize = 0;
ret = -ENOMEM;
goto fail;
}
memset(zram->table, 0, num_pages * sizeof(*zram->table));

set_capacity(zram->disk, zram->disksize >> SECTOR_SHIFT);

Expand Down

0 comments on commit 591ebb4

Please sign in to comment.