mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
whitespace fixes: relayfs
Signed-off-by: Daniel Walker <dwalker@mvista.com> Cc: Tom Zanussi <zanussi@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
dedf8b79ec
commit
1bfbc608ba
@ -370,7 +370,7 @@ void relay_reset(struct rchan *chan)
|
||||
if (!chan)
|
||||
return;
|
||||
|
||||
if (chan->is_global && chan->buf[0]) {
|
||||
if (chan->is_global && chan->buf[0]) {
|
||||
__relay_reset(chan->buf[0], 0);
|
||||
return;
|
||||
}
|
||||
@ -850,13 +850,13 @@ static int relay_file_read_avail(struct rchan_buf *buf, size_t read_pos)
|
||||
buf->subbufs_consumed = consumed;
|
||||
buf->bytes_consumed = 0;
|
||||
}
|
||||
|
||||
|
||||
produced = (produced % n_subbufs) * subbuf_size + buf->offset;
|
||||
consumed = (consumed % n_subbufs) * subbuf_size + buf->bytes_consumed;
|
||||
|
||||
if (consumed > produced)
|
||||
produced += n_subbufs * subbuf_size;
|
||||
|
||||
|
||||
if (consumed == produced)
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user