Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22237
b: refs/heads/master
c: 12e1872
h: refs/heads/master
i:
  22235: aa42a04
v: v3
  • Loading branch information
Luiz Capitulino authored and David S. Miller committed Mar 21, 2006
1 parent c8969da commit 9ced82b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 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: cdcdbe0b179adca0bcf98f660fcc63e208ae4284
refs/heads/master: 12e1872328e7055d06e539f1b687dc3d0610855c
11 changes: 9 additions & 2 deletions trunk/net/core/pktgen.c
Original file line number Diff line number Diff line change
Expand Up @@ -3082,6 +3082,7 @@ static struct pktgen_thread *__init pktgen_find_thread(const char *name)

static int __init pktgen_create_thread(const char *name, int cpu)
{
int err;
struct pktgen_thread *t = NULL;
struct proc_dir_entry *pe;

Expand Down Expand Up @@ -3120,9 +3121,15 @@ static int __init pktgen_create_thread(const char *name, int cpu)

t->removed = 0;

if (kernel_thread((void *)pktgen_thread_worker, (void *)t,
CLONE_FS | CLONE_FILES | CLONE_SIGHAND) < 0)
err = kernel_thread((void *)pktgen_thread_worker, (void *)t,
CLONE_FS | CLONE_FILES | CLONE_SIGHAND);
if (err < 0) {
printk("pktgen: kernel_thread() failed for cpu %d\n", t->cpu);
remove_proc_entry(t->name, pg_proc_dir);
list_del(&t->th_list);
kfree(t);
return err;
}

return 0;
}
Expand Down

0 comments on commit 9ced82b

Please sign in to comment.