um: replace kmalloc+memset with kzalloc
Replace kmalloc+memset with kzalloc Signed-off-by: Yan Burman <burman.yan@gmail.com> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
47c6bf7760
commit
0268bd0a80
1 changed files with 1 additions and 2 deletions
|
@ -334,13 +334,12 @@ static int eth_configure(int n, void *init, char *mac,
|
||||||
size = transport->private_size + sizeof(struct uml_net_private) +
|
size = transport->private_size + sizeof(struct uml_net_private) +
|
||||||
sizeof(((struct uml_net_private *) 0)->user);
|
sizeof(((struct uml_net_private *) 0)->user);
|
||||||
|
|
||||||
device = kmalloc(sizeof(*device), GFP_KERNEL);
|
device = kzalloc(sizeof(*device), GFP_KERNEL);
|
||||||
if (device == NULL) {
|
if (device == NULL) {
|
||||||
printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
|
printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
|
||||||
return(1);
|
return(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(device, 0, sizeof(*device));
|
|
||||||
INIT_LIST_HEAD(&device->list);
|
INIT_LIST_HEAD(&device->list);
|
||||||
device->index = n;
|
device->index = n;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue