diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-18 17:07:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-18 17:07:35 -0400 |
commit | 15fc204afc6feb915c400159546f646eca8ba1d9 (patch) | |
tree | 51bec0710be2a0cb0bedbccbea7813f17fbc61ea /arch/sh/kernel/process_64.c | |
parent | d2aa4550379f92e929af7ed1dd4f55e6a1e331f8 (diff) | |
parent | 944557116908cbe835be41bfbd39d9706da9fd71 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6: (56 commits)
sh: Fix declaration of __kernel_sigreturn and __kernel_rt_sigreturn
sh: Enable soc-camera in ap325rxa/migor/se7724 defconfigs.
sh: remove stray markers.
sh: defconfig updates.
sh: pci: Initial PCI-Express support for SH7786 Urquell board.
sh: Generic HAVE_PERF_COUNTER support.
SH: convert migor to soc-camera as platform-device
SH: convert ap325rxa to soc-camera as platform-device
soc-camera: unify i2c camera device platform data
sh: add platform data for r8a66597-hcd in setup-sh7723
sh: add platform data for r8a66597-hcd in setup-sh7366
sh: x3proto: add platform data for r8a66597-hcd
sh: highlander: add platform data for r8a66597-hcd
sh: sh7785lcr: add platform data for r8a66597-hcd
sh: turn off irqs when disabling CMT/TMU timers
sh: use kzalloc() for cpg clocks
sh: unbreak WARN_ON()
sh: Use generic atomic64_t implementation.
sh: Revised clock function in highlander
sh: Update r7780mp defconfig
...
Diffstat (limited to 'arch/sh/kernel/process_64.c')
-rw-r--r-- | arch/sh/kernel/process_64.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 3826773496d8..24de74214940 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c | |||
@@ -323,7 +323,6 @@ ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *)) | |||
323 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) | 323 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
324 | { | 324 | { |
325 | struct pt_regs regs; | 325 | struct pt_regs regs; |
326 | int pid; | ||
327 | 326 | ||
328 | memset(®s, 0, sizeof(regs)); | 327 | memset(®s, 0, sizeof(regs)); |
329 | regs.regs[2] = (unsigned long)arg; | 328 | regs.regs[2] = (unsigned long)arg; |
@@ -333,12 +332,8 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) | |||
333 | regs.sr = (1 << 30); | 332 | regs.sr = (1 << 30); |
334 | 333 | ||
335 | /* Ok, create the new process.. */ | 334 | /* Ok, create the new process.. */ |
336 | pid = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, | 335 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, |
337 | ®s, 0, NULL, NULL); | 336 | ®s, 0, NULL, NULL); |
338 | |||
339 | trace_mark(kernel_arch_kthread_create, "pid %d fn %p", pid, fn); | ||
340 | |||
341 | return pid; | ||
342 | } | 337 | } |
343 | 338 | ||
344 | /* | 339 | /* |