linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hongbo Li <lihongbo22@huawei.com>
To: <konishi.ryusuke@gmail.com>
Cc: <linux-nilfs@vger.kernel.org>, <linux-fsdevel@vger.kernel.org>
Subject: Re: [PATCH -next] nilfs2: support STATX_DIOALIGN for statx file
Date: Tue, 27 Aug 2024 09:55:19 +0800	[thread overview]
Message-ID: <e313ee9f-54fc-44c0-887d-612121f7b088@huawei.com> (raw)
In-Reply-To: <20240827020029.620357-1-lihongbo22@huawei.com>

Sorry, I send the wrong patch, just ignore this.

On 2024/8/27 10:00, Hongbo Li wrote:
> Add support for STATX_DIOALIGN to nilfs2, so that direct I/O alignment
> restrictions are exposed to userspace in a generic way.
> 
> By default, nilfs2 uses the default getattr implemented at vfs layer,
> so we should implement getattr in nilfs2 to fill the dio_xx_align
> members. We have done the following test:
> 
> [Before]
> ```
> ./statx_test /mnt/nilfs2/testfile
> statx(/mnt/nilfs2/test) = 0
> dio mem align:0
> dio offset align:0
> ```
> 
> [After]
> ```
> ./statx_test /mnt/nilfs2/test
> statx(/mnt/nilfs2/test) = 0
> dio mem align:512
> dio offset align:512
> ```
> 
> Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
> ---
>   fs/nilfs2/file.c  |  1 +
>   fs/nilfs2/inode.c | 20 ++++++++++++++++++++
>   fs/nilfs2/namei.c |  2 ++
>   fs/nilfs2/nilfs.h |  2 ++
>   4 files changed, 25 insertions(+)
> 
> diff --git a/fs/nilfs2/file.c b/fs/nilfs2/file.c
> index 0e3fc5ba33c7..5528918d4b96 100644
> --- a/fs/nilfs2/file.c
> +++ b/fs/nilfs2/file.c
> @@ -154,6 +154,7 @@ const struct file_operations nilfs_file_operations = {
>   
>   const struct inode_operations nilfs_file_inode_operations = {
>   	.setattr	= nilfs_setattr,
> +	.getattr	= nilfs_getattr,
>   	.permission     = nilfs_permission,
>   	.fiemap		= nilfs_fiemap,
>   	.fileattr_get	= nilfs_fileattr_get,
> diff --git a/fs/nilfs2/inode.c b/fs/nilfs2/inode.c
> index 7340a01d80e1..7bf062793642 100644
> --- a/fs/nilfs2/inode.c
> +++ b/fs/nilfs2/inode.c
> @@ -1001,6 +1001,26 @@ int nilfs_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
>   	return err;
>   }
>   
> +int nilfs_getattr(struct mnt_idmap *idmap, const struct path *path,
> +			struct kstat *stat, u3 request_mask, unsigned int query_flags)
> +{
> +	struct inode *const inode = d_inode(path->dentry);
> +	struct block_device *bdev = inode->i_sb->s_bdev;
> +	unsigned int blksize = (1 << inode->i_blkbits);
> +
> +	if ((request_mask & STATX_DIOALIGN) && S_ISREG(inode->i_mode)) {
> +		stat->result_mask |= STATX_DIOALIGN;
> +
> +		if (bdev)
> +			blksize = bdev_logical_block_size(bdev);
> +		stat->dio_mem_align = blksize;
> +		stat->dio_offset_align = blksize;
> +	}
> +
> +	generic_fillattr(idmap, request_mask, inode, stat);
> +	return 0;
> +}
> +
>   int nilfs_permission(struct mnt_idmap *idmap, struct inode *inode,
>   		     int mask)
>   {
> diff --git a/fs/nilfs2/namei.c b/fs/nilfs2/namei.c
> index c950139db6ef..ad56f4f8be1f 100644
> --- a/fs/nilfs2/namei.c
> +++ b/fs/nilfs2/namei.c
> @@ -546,6 +546,7 @@ const struct inode_operations nilfs_dir_inode_operations = {
>   	.mknod		= nilfs_mknod,
>   	.rename		= nilfs_rename,
>   	.setattr	= nilfs_setattr,
> +	.getattr	= nilfs_getattr,
>   	.permission	= nilfs_permission,
>   	.fiemap		= nilfs_fiemap,
>   	.fileattr_get	= nilfs_fileattr_get,
> @@ -554,6 +555,7 @@ const struct inode_operations nilfs_dir_inode_operations = {
>   
>   const struct inode_operations nilfs_special_inode_operations = {
>   	.setattr	= nilfs_setattr,
> +	.getattr	= nilfs_getattr,
>   	.permission	= nilfs_permission,
>   };
>   
> diff --git a/fs/nilfs2/nilfs.h b/fs/nilfs2/nilfs.h
> index 4017f7856440..c2182bb660bf 100644
> --- a/fs/nilfs2/nilfs.h
> +++ b/fs/nilfs2/nilfs.h
> @@ -280,6 +280,8 @@ extern void nilfs_truncate(struct inode *);
>   extern void nilfs_evict_inode(struct inode *);
>   extern int nilfs_setattr(struct mnt_idmap *, struct dentry *,
>   			 struct iattr *);
> +extern int nilfs_getattr(struct mnt_idmap *idmap, const struct path *path,
> +			struct kstat *stat, u3 request_mask, unsigned int query_flags);
>   extern void nilfs_write_failed(struct address_space *mapping, loff_t to);
>   int nilfs_permission(struct mnt_idmap *idmap, struct inode *inode,
>   		     int mask);

  reply	other threads:[~2024-08-27  1:55 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-27  2:00 [PATCH -next] nilfs2: support STATX_DIOALIGN for statx file Hongbo Li
2024-08-27  1:55 ` Hongbo Li [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-27  1:51 Hongbo Li
2024-08-27 18:15 ` Ryusuke Konishi
2024-08-28  1:12   ` Hongbo Li
2024-08-28  5:11     ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e313ee9f-54fc-44c0-887d-612121f7b088@huawei.com \
    --to=lihongbo22@huawei.com \
    --cc=konishi.ryusuke@gmail.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-nilfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).