lkml.org 
[lkml]   [2016]   [May]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
SubjectRe: linux-next: manual merge of the vfs tree with the ext4 tree
Date
On Tuesday 17 May 2016 10:23:55 Stephen Rothwell wrote:
> ++static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter)
> +{
> + int unlocked = 0;
> + struct inode *inode = iocb->ki_filp->f_mapping->host;
> ++ loff_t offset = iocb->ki_pos;
> + ssize_t ret;
> +
> + if (ext4_should_dioread_nolock(inode)) {
> + /*
> + * Nolock dioread optimization may be dynamically disabled
> + * via ext4_inode_block_unlocked_dio(). Check inode's state
> + * while holding extra i_dio_count ref.
> + */
> + inode_dio_begin(inode);
> + smp_mb();
> + if (unlikely(ext4_test_inode_state(inode,
> + EXT4_STATE_DIOREAD_LOCK)))
> + inode_dio_end(inode);
> + else
> + unlocked = 1;
> + }
> + if (IS_DAX(inode)) {
> - ret = dax_do_io(iocb, inode, iter, offset, ext4_dio_get_block,
> ++ ret = dax_do_io(iocb, inode, iter, ext4_dio_get_block,
> + NULL, unlocked ? 0 : DIO_LOCKING);
> + } else {
> + ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev,
> - iter, offset, ext4_dio_get_block,
> ++ iter, ext4_dio_get_block,
> + NULL, NULL,
> + unlocked ? 0 : DIO_LOCKING);
> + }
> + if (unlocked)
> + inode_dio_end(inode);
> return ret;
> }
>

I'm getting a warning here because the 'offset' variable is no longer
used, I've fixed it up on my test box like this:

commit 21fffc41b151a6146981487a3fee974e33c7005e
Author: Arnd Bergmann <arnd@arndb.de>
Date: Tue May 17 13:23:39 2016 +0200

ext4: fix linux-next mismerge

fs/ext4/inode.c: In function 'ext4_direct_IO_read':
fs/ext4/inode.c:3502:9: error: unused variable 'offset' [-Werror=unused-variable]
loff_t offset = iocb->ki_pos;

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index cd72f208c405..f7140ca66e3b 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -3499,7 +3499,6 @@ static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter)
{
int unlocked = 0;
struct inode *inode = iocb->ki_filp->f_mapping->host;
- loff_t offset = iocb->ki_pos;
ssize_t ret;

if (ext4_should_dioread_nolock(inode)) {
\
 
 \ /
  Last update: 2016-05-18 16:41    [W:0.104 / U:0.208 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site