linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nikolay Borisov <nborisov@suse.com>
To: Johannes Thumshirn <jthumshirn@suse.de>, David Sterba <dsterba@suse.com>
Cc: Linux BTRFS Mailinglist <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH 2/3] btrfs: use PAGE_ALIGNED instead of open-coding it
Date: Wed, 5 Dec 2018 16:31:11 +0200	[thread overview]
Message-ID: <ee29c8b4-f817-7f97-4503-20efde877e28@suse.com> (raw)
In-Reply-To: <20181205142305.15361-3-jthumshirn@suse.de>



On 5.12.18 г. 16:23 ч., Johannes Thumshirn wrote:
> When using a 'var & (PAGE_SIZE - 1)' construct one is checking for a page
> alignment and thus should use the PAGE_ALIGNED() macro instead of
> open-coding it.
> 
> Convert all open-coded occurrences of PAGE_ALIGNED().
> 
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>

Reviewed-by: Nikolay Borisov <nborisov@suse.com>

> ---
>  fs/btrfs/check-integrity.c | 8 ++++----
>  fs/btrfs/compression.c     | 2 +-
>  fs/btrfs/inode.c           | 2 +-
>  3 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/fs/btrfs/check-integrity.c b/fs/btrfs/check-integrity.c
> index d319c3020c09..84e9729badaa 100644
> --- a/fs/btrfs/check-integrity.c
> +++ b/fs/btrfs/check-integrity.c
> @@ -1601,7 +1601,7 @@ static int btrfsic_read_block(struct btrfsic_state *state,
>  	BUG_ON(block_ctx->datav);
>  	BUG_ON(block_ctx->pagev);
>  	BUG_ON(block_ctx->mem_to_free);
> -	if (block_ctx->dev_bytenr & ((u64)PAGE_SIZE - 1)) {
> +	if (!PAGE_ALIGNED(block_ctx->dev_bytenr)) {
>  		pr_info("btrfsic: read_block() with unaligned bytenr %llu\n",
>  		       block_ctx->dev_bytenr);
>  		return -1;
> @@ -1778,7 +1778,7 @@ static void btrfsic_process_written_block(struct btrfsic_dev_state *dev_state,
>  				return;
>  			}
>  			is_metadata = 1;
> -			BUG_ON(BTRFS_SUPER_INFO_SIZE & (PAGE_SIZE - 1));
> +			BUG_ON(!PAGE_ALIGNED(BTRFS_SUPER_INFO_SIZE));
>  			processed_len = BTRFS_SUPER_INFO_SIZE;
>  			if (state->print_mask &
>  			    BTRFSIC_PRINT_MASK_TREE_BEFORE_SB_WRITE) {
> @@ -2892,12 +2892,12 @@ int btrfsic_mount(struct btrfs_fs_info *fs_info,
>  	struct list_head *dev_head = &fs_devices->devices;
>  	struct btrfs_device *device;
>  
> -	if (fs_info->nodesize & ((u64)PAGE_SIZE - 1)) {
> +	if (!PAGE_ALIGNED(fs_info->nodesize)) {
>  		pr_info("btrfsic: cannot handle nodesize %d not being a multiple of PAGE_SIZE %ld!\n",
>  		       fs_info->nodesize, PAGE_SIZE);
>  		return -1;
>  	}
> -	if (fs_info->sectorsize & ((u64)PAGE_SIZE - 1)) {
> +	if (!PAGE_ALIGNED(fs_info->sectorsize)) {
>  		pr_info("btrfsic: cannot handle sectorsize %d not being a multiple of PAGE_SIZE %ld!\n",
>  		       fs_info->sectorsize, PAGE_SIZE);
>  		return -1;
> diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c
> index 2ab5591449f2..d5381f39a9e8 100644
> --- a/fs/btrfs/compression.c
> +++ b/fs/btrfs/compression.c
> @@ -301,7 +301,7 @@ blk_status_t btrfs_submit_compressed_write(struct inode *inode, u64 start,
>  	blk_status_t ret;
>  	int skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
>  
> -	WARN_ON(start & ((u64)PAGE_SIZE - 1));
> +	WARN_ON(!PAGE_ALIGNED(start));
>  	cb = kmalloc(compressed_bio_size(fs_info, compressed_len), GFP_NOFS);
>  	if (!cb)
>  		return BLK_STS_RESOURCE;
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index bc0564c384de..5c52e91b01e8 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -2027,7 +2027,7 @@ int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
>  			      unsigned int extra_bits,
>  			      struct extent_state **cached_state, int dedupe)
>  {
> -	WARN_ON((end & (PAGE_SIZE - 1)) == 0);
> +	WARN_ON(PAGE_ALIGNED(end));
>  	return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
>  				   extra_bits, cached_state);
>  }
> 

  reply	other threads:[~2018-12-05 14:31 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-05 14:23 [PATCH 0/3] btrfs: use offset_in_page and PAGE_ALIGNED Johannes Thumshirn
2018-12-05 14:23 ` [PATCH 1/3] btrfs: use offset_in_page instead of open-coding it Johannes Thumshirn
2018-12-05 14:32   ` Nikolay Borisov
2018-12-05 14:23 ` [PATCH 2/3] btrfs: use PAGE_ALIGNED " Johannes Thumshirn
2018-12-05 14:31   ` Nikolay Borisov [this message]
2018-12-05 14:23 ` [RFC PATCH 3/3] coccinelle: api: add offset_in_page.cocci Johannes Thumshirn
2018-12-05 14:46   ` Julia Lawall
2018-12-06 17:11     ` Johannes Thumshirn
2018-12-06 20:15       ` Julia Lawall
2018-12-06 14:54 ` [PATCH 0/3] btrfs: use offset_in_page and PAGE_ALIGNED David Sterba

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=ee29c8b4-f817-7f97-4503-20efde877e28@suse.com \
    --to=nborisov@suse.com \
    --cc=dsterba@suse.com \
    --cc=jthumshirn@suse.de \
    --cc=linux-btrfs@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).