Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 32202
b: refs/heads/master
c: 1b30dd3
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle authored and David S. Miller committed Jul 9, 2006
1 parent 9f3d978 commit aa3410c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 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: 24781734643ea2e9fd864f58000e47793e2dcb04
refs/heads/master: 1b30dd359ebec22d035e8b145751319f63772ca1
3 changes: 1 addition & 2 deletions trunk/net/ax25/af_ax25.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,9 @@ ax25_cb *ax25_create_cb(void)
{
ax25_cb *ax25;

if ((ax25 = kmalloc(sizeof(*ax25), GFP_ATOMIC)) == NULL)
if ((ax25 = kzalloc(sizeof(*ax25), GFP_ATOMIC)) == NULL)
return NULL;

memset(ax25, 0x00, sizeof(*ax25));
atomic_set(&ax25->refcount, 1);

skb_queue_head_init(&ax25->write_queue);
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/ax25/ax25_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,13 @@ void ax25_dev_device_up(struct net_device *dev)
{
ax25_dev *ax25_dev;

if ((ax25_dev = kmalloc(sizeof(*ax25_dev), GFP_ATOMIC)) == NULL) {
if ((ax25_dev = kzalloc(sizeof(*ax25_dev), GFP_ATOMIC)) == NULL) {
printk(KERN_ERR "AX.25: ax25_dev_device_up - out of memory\n");
return;
}

ax25_unregister_sysctl();

memset(ax25_dev, 0x00, sizeof(*ax25_dev));

dev->ax25_ptr = ax25_dev;
ax25_dev->dev = dev;
dev_hold(dev);
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/netrom/af_netrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,14 +1382,12 @@ static int __init nr_proto_init(void)
return -1;
}

dev_nr = kmalloc(nr_ndevs * sizeof(struct net_device *), GFP_KERNEL);
dev_nr = kzalloc(nr_ndevs * sizeof(struct net_device *), GFP_KERNEL);
if (dev_nr == NULL) {
printk(KERN_ERR "NET/ROM: nr_proto_init - unable to allocate device array\n");
return -1;
}

memset(dev_nr, 0x00, nr_ndevs * sizeof(struct net_device *));

for (i = 0; i < nr_ndevs; i++) {
char name[IFNAMSIZ];
struct net_device *dev;
Expand Down
3 changes: 1 addition & 2 deletions trunk/net/rose/af_rose.c
Original file line number Diff line number Diff line change
Expand Up @@ -1490,14 +1490,13 @@ static int __init rose_proto_init(void)

rose_callsign = null_ax25_address;

dev_rose = kmalloc(rose_ndevs * sizeof(struct net_device *), GFP_KERNEL);
dev_rose = kzalloc(rose_ndevs * sizeof(struct net_device *), GFP_KERNEL);
if (dev_rose == NULL) {
printk(KERN_ERR "ROSE: rose_proto_init - unable to allocate device structure\n");
rc = -ENOMEM;
goto out_proto_unregister;
}

memset(dev_rose, 0x00, rose_ndevs * sizeof(struct net_device*));
for (i = 0; i < rose_ndevs; i++) {
struct net_device *dev;
char name[IFNAMSIZ];
Expand Down

0 comments on commit aa3410c

Please sign in to comment.