Description:
linux-kernel@vger.kernel.org (Moderated)
|
|
|
Fix error return for fallocate() on XFS
|
| |
Noticed that through glibc fallocate would return 28 rather than -1 and errno = 28 for ENOSPC. The xfs routines uses XFS_ERROR format positive return error codes while the syscalls use negative return codes. Fixup the two cases in xfs_vn_fallocate syscall to convert to negative. Signed-off-by: Jason Gunthorpe <jguntho...@obsidianresearch.c om>... more »
|
|
tracepoint: Add signal deliver event
|
| |
Add a tracepoint where a process gets a signal. This tracepoint shows signal-number, sa-handler and sa-flag. Changes in v3: - Add docbook style comments Changes in v2: - Add siginfo argument - Fix comment Signed-off-by: Masami Hiramatsu <mhira...@redhat.com> Reviewed-by: Jason Baron <jba...@redhat.com>... more »
|
|
move asic3_remove to .devexit.text
|
| |
The function asic3_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.d e> Acked-by: Sam Ravnborg <s...@ravnborg.org> Cc: Samuel Ortiz <sa...@linux.intel.com> Cc: Philipp Zabel <philipp.za...@gmail.com> Cc: Yinghai Lu <yhlu.ker...@gmail.com>... more »
|
|
move mc33880_remove to .devexit.text
|
| |
The function mc33880_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.d e> Cc: Andrew Morton <a...@linux-foundation.org> Cc: "Richard Röjfors" <richard.rojfors....@mocean-la bs.com> Cc: linux-ker...@vger.kernel.org ---... more »
|
|
tracehooks: kill some PT_PTRACED checks
|
| |
No functional changes, preparation for utrace-ptrace. task_ptrace() != 0 if and only if PT_PTRACED bit is set, kill some PT_PTRACED checks in tracehook.h to ensure the result is the same with or without utrace which doesn't set PT_PTRACED. Signed-off-by: Roland McGrath <rol...@redhat.com> Signed-off-by: Oleg Nesterov <o...@redhat.com>... more »
|
|
utrace/ptrace
|
| |
Hello. This is the new iteration of Roland's utrace patch, this time with "rewrite-ptrace-via-utrace" + cleanups in utrace core. 1-7 are already in -mm tree, I am sending them to simplify the review. 8-12 don not change the behaviour, simple preparations. 13-14 add utrace-ptrace and utrace Please review.... more »
|
|
ptrace: x86: implement user_single_step_siginfo()
|
| |
(already in mm: ptrace-x86-implement-user_sing le_step_siginfo.patch) Suggested by Roland. Implement user_single_step_siginfo() for x86. Extract this code from send_sigtrap(). Since x86 calls tracehook_report_syscall_exit( step => 0) the new helper is not used yet. Signed-off-by: Oleg Nesterov <o...@redhat.com>... more »
|
|
|