Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 135512
b: refs/heads/master
c: e5b5719
h: refs/heads/master
v: v3
  • Loading branch information
Klaus-Dieter Wacker authored and David S. Miller committed Mar 24, 2009
1 parent e7db628 commit 8e8c4e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 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: 5393f3162d3a85317e1e22c33539905fa5258e5f
refs/heads/master: e5b5719b06d3c614e904bc817177bd3c49c52edb
8 changes: 3 additions & 5 deletions trunk/drivers/s390/net/lcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include <linux/in.h>
#include <linux/igmp.h>
#include <linux/delay.h>
#include <linux/kthread.h>
#include <net/arp.h>
#include <net/ip.h>

Expand Down Expand Up @@ -1259,7 +1260,6 @@ lcs_register_mc_addresses(void *data)
struct in_device *in4_dev;

card = (struct lcs_card *) data;
daemonize("regipm");

if (!lcs_do_run_thread(card, LCS_SET_MC_THREAD))
return 0;
Expand Down Expand Up @@ -1753,11 +1753,10 @@ lcs_start_kernel_thread(struct work_struct *work)
struct lcs_card *card = container_of(work, struct lcs_card, kernel_thread_starter);
LCS_DBF_TEXT(5, trace, "krnthrd");
if (lcs_do_start_thread(card, LCS_RECOVERY_THREAD))
kernel_thread(lcs_recovery, (void *) card, SIGCHLD);
kthread_run(lcs_recovery, card, "lcs_recover");
#ifdef CONFIG_IP_MULTICAST
if (lcs_do_start_thread(card, LCS_SET_MC_THREAD))
kernel_thread(lcs_register_mc_addresses,
(void *) card, SIGCHLD);
kthread_run(lcs_register_mc_addresses, card, "regipm");
#endif
}

Expand Down Expand Up @@ -2269,7 +2268,6 @@ lcs_recovery(void *ptr)
int rc;

card = (struct lcs_card *) ptr;
daemonize("lcs_recover");

LCS_DBF_TEXT(4, trace, "recover1");
if (!lcs_do_run_thread(card, LCS_RECOVERY_THREAD))
Expand Down

0 comments on commit 8e8c4e7

Please sign in to comment.