diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2007-09-19 00:38:12 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-09-19 01:12:19 -0400 |
commit | 7af1443a9d319132087e1e9a3984b94c6998835c (patch) | |
tree | a38fbc03da6201e89a9e850115433df724eba7a4 /include/asm-powerpc/spu.h | |
parent | e55014923e65e4ee8e477a1212381cca0125f3aa (diff) |
[POWERPC] spufs: Handle errors in SPU coredump code, and support coredump to a pipe
Rework spufs_coredump_extra_notes_write() to check for and return errors.
If we're coredumping to a pipe we can't trust file->f_pos, we need to
maintain the foffset value passed to us. The cleanest way to do this is
to have the low level write routine increment foffset when we've
successfully written.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/spu.h')
-rw-r--r-- | include/asm-powerpc/spu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/spu.h b/include/asm-powerpc/spu.h index f1b10a187987..b1accce77bb5 100644 --- a/include/asm-powerpc/spu.h +++ b/include/asm-powerpc/spu.h | |||
@@ -245,7 +245,7 @@ struct spufs_calls { | |||
245 | long (*spu_run)(struct file *filp, __u32 __user *unpc, | 245 | long (*spu_run)(struct file *filp, __u32 __user *unpc, |
246 | __u32 __user *ustatus); | 246 | __u32 __user *ustatus); |
247 | int (*coredump_extra_notes_size)(void); | 247 | int (*coredump_extra_notes_size)(void); |
248 | void (*coredump_extra_notes_write)(struct file *file); | 248 | int (*coredump_extra_notes_write)(struct file *file, loff_t *foffset); |
249 | struct module *owner; | 249 | struct module *owner; |
250 | }; | 250 | }; |
251 | 251 | ||