inode_dio_begin and inode_dio_end have same comment "This is called once we have finished processing ...". This comment is applicable only for inode_dio_end and someone copy pasted it for inode_dio_begin also. Hence, updated the comment for inode_dio_begin by adding correct explanation. --- include/linux/fs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 1cb616fc1105..2fb075da88a4 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -3282,8 +3282,7 @@ void inode_dio_wait(struct inode *inode); * inode_dio_begin - signal start of a direct I/O requests * @inode: inode the direct I/O happens on * - * This is called once we've finished processing a direct I/O request, - * and is used to wake up callers waiting for direct I/O to be quiesced. + * This is called once we've started processing a direct I/O request. */ static inline void inode_dio_begin(struct inode *inode) { -- 2.17.1