diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-10-15 06:20:42 +0400 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-10-21 04:13:07 +0400 |
commit | e869446bb6db209e6092f7cba6cdfc2a5e637177 (patch) | |
tree | be2506f59efce3c5cd6d5a847ae40ea7657c2bb5 /arch/powerpc/platforms/cell | |
parent | baf399273f2ea38e2fcbd4d0b6cc7ba7f7db43eb (diff) | |
download | linux-e869446bb6db209e6092f7cba6cdfc2a5e637177.tar.xz |
powerpc/spufs: sputrace: Don't block until the read buffer is full
Currently, read() on the sputrace buffer will only return data when
the user buffer is exhausted. This may mean that we never see the
end of the event log, unless we read() with exactly the right-sized
buffer.
This change makes sputrace_read not block if we have data ready to
return.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'arch/powerpc/platforms/cell')
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/sputrace.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/sputrace.c b/arch/powerpc/platforms/cell/spufs/sputrace.c index 50cae0cf0988..a2460e2e1928 100644 --- a/arch/powerpc/platforms/cell/spufs/sputrace.c +++ b/arch/powerpc/platforms/cell/spufs/sputrace.c @@ -80,6 +80,11 @@ static ssize_t sputrace_read(struct file *file, char __user *buf, char tbuf[128]; int width; + /* If we have data ready to return, don't block waiting + * for more */ + if (cnt > 0 && sputrace_used() == 0) + break; + error = wait_event_interruptible(sputrace_wait, sputrace_used() > 0); if (error) |