Skip to content

Commit 0bf999f

Browse files
rddunlaptorvalds
authored andcommitted
linux/pipe_fs_i.h: fix kernel-doc warnings after @wait was split
Fix kernel-doc warnings in struct pipe_inode_info after @wait was split into @rd_wait and @wr_wait. include/linux/pipe_fs_i.h:66: warning: Function parameter or member 'rd_wait' not described in 'pipe_inode_info' include/linux/pipe_fs_i.h:66: warning: Function parameter or member 'wr_wait' not described in 'pipe_inode_info' Fixes: 0ddad21 ("pipe: use exclusive waits when reading or writing") Signed-off-by: Randy Dunlap <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent f2850dd commit 0bf999f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/linux/pipe_fs_i.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ struct pipe_buffer {
2929
/**
3030
* struct pipe_inode_info - a linux kernel pipe
3131
* @mutex: mutex protecting the whole thing
32-
* @wait: reader/writer wait point in case of empty/full pipe
32+
* @rd_wait: reader wait point in case of empty pipe
33+
* @wr_wait: writer wait point in case of full pipe
3334
* @head: The point of buffer production
3435
* @tail: The point of buffer consumption
3536
* @max_usage: The maximum number of slots that may be used in the ring

0 commit comments

Comments
 (0)