diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-07-18 06:20:23 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-07-18 06:20:23 -0400 |
| commit | cd569ef5d6ff9f43e9504f1ffc7fdbe356518149 (patch) | |
| tree | 9a4ab5e600fd09e991aa1fbb69adb1c7950898a4 /drivers/net/netconsole.c | |
| parent | 6879827f4e08da219c99b91e4e1d793a924103e3 (diff) | |
| parent | 5b664cb235e97afbf34db9c4d77f08ebd725335e (diff) | |
Merge branch 'linus' into x86/urgent
Diffstat (limited to 'drivers/net/netconsole.c')
| -rw-r--r-- | drivers/net/netconsole.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 665341e43055..387a13395015 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c | |||
| @@ -585,8 +585,9 @@ static struct config_item_type netconsole_target_type = { | |||
| 585 | * Group operations and type for netconsole_subsys. | 585 | * Group operations and type for netconsole_subsys. |
| 586 | */ | 586 | */ |
| 587 | 587 | ||
| 588 | static struct config_item *make_netconsole_target(struct config_group *group, | 588 | static int make_netconsole_target(struct config_group *group, |
| 589 | const char *name) | 589 | const char *name, |
| 590 | struct config_item **new_item) | ||
| 590 | { | 591 | { |
| 591 | unsigned long flags; | 592 | unsigned long flags; |
| 592 | struct netconsole_target *nt; | 593 | struct netconsole_target *nt; |
| @@ -598,7 +599,7 @@ static struct config_item *make_netconsole_target(struct config_group *group, | |||
| 598 | nt = kzalloc(sizeof(*nt), GFP_KERNEL); | 599 | nt = kzalloc(sizeof(*nt), GFP_KERNEL); |
| 599 | if (!nt) { | 600 | if (!nt) { |
| 600 | printk(KERN_ERR "netconsole: failed to allocate memory\n"); | 601 | printk(KERN_ERR "netconsole: failed to allocate memory\n"); |
| 601 | return NULL; | 602 | return -ENOMEM; |
| 602 | } | 603 | } |
| 603 | 604 | ||
| 604 | nt->np.name = "netconsole"; | 605 | nt->np.name = "netconsole"; |
| @@ -615,7 +616,8 @@ static struct config_item *make_netconsole_target(struct config_group *group, | |||
| 615 | list_add(&nt->list, &target_list); | 616 | list_add(&nt->list, &target_list); |
| 616 | spin_unlock_irqrestore(&target_list_lock, flags); | 617 | spin_unlock_irqrestore(&target_list_lock, flags); |
| 617 | 618 | ||
| 618 | return &nt->item; | 619 | *new_item = &nt->item; |
| 620 | return 0; | ||
| 619 | } | 621 | } |
| 620 | 622 | ||
| 621 | static void drop_netconsole_target(struct config_group *group, | 623 | static void drop_netconsole_target(struct config_group *group, |
