linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Eric Sandeen <sandeen@sandeen.net>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-xfs <linux-xfs@vger.kernel.org>
Subject: Re: [PATCH V2] libxfs: use FALLOC_FL_ZERO_RANGE in libxfs_device_zero
Date: Thu, 13 Feb 2020 19:43:40 -0600	[thread overview]
Message-ID: <d56ce0e2-2a43-1847-8ed4-5d7e13504457@sandeen.net> (raw)
In-Reply-To: <20200214013457.GX10776@dread.disaster.area>

On 2/13/20 7:34 PM, Dave Chinner wrote:
> On Thu, Feb 13, 2020 at 07:05:50PM -0600, Eric Sandeen wrote:

...

>>  /*
>>   * Check whether we have to define FS_IOC_FS[GS]ETXATTR ourselves. These
>>   * are a copy of the definitions moved to linux/uapi/fs.h in the 4.5 kernel,
>> diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c
>> index 0d9d7202..2f6a3eb3 100644
>> --- a/libxfs/rdwr.c
>> +++ b/libxfs/rdwr.c
>> @@ -60,9 +60,19 @@ int
>>  libxfs_device_zero(struct xfs_buftarg *btp, xfs_daddr_t start, uint len)
>>  {
>>  	xfs_off_t	start_offset, end_offset, offset;
>> -	ssize_t		zsize, bytes;
>> +	ssize_t		zsize, bytes, len_bytes;
> 
> len_bytes should be size_t, right?

They probably all should be, TBH...
 
>>  	char		*z;
>> -	int		fd;
>> +	int		error, fd;
>> +
>> +	fd = libxfs_device_to_fd(btp->dev);
>> +	start_offset = LIBXFS_BBTOOFF64(start);
>> +	end_offset = LIBXFS_BBTOOFF64(start + len) - start_offset;
>> +
>> +	/* try to use special zeroing methods, fall back to writes if needed */
>> +	len_bytes = LIBXFS_BBTOOFF64(len);
>> +	error = platform_zero_range(fd, start_offset, len_bytes);
> 
> This is a bit ... convoluted, and doesn't end_offset = len_bytes?
> i.e.
> 
> start_offset = start << BBSHIFT
> len_bytes = len << BBSHIFT
> end_offset = (start + len) << BBSHIFT - start_offset
> 	   = (start << BBSHIFT) + (len << BBSHIFT) - start_offset
> 	   = start_offset + len_bytes - start_offset
> 	   = len_bytes

oh, yikes.  Good catch.  Before, it was used as

        end_offset = LIBXFS_BBTOOFF64(start + len) - start_offset;
        for (offset = 0; offset < end_offset; ) {
                bytes = min((ssize_t)(end_offset - offset), zsize);
                if ((bytes = write(fd, z, bytes)) < 0) {

"end_offset" was not the ending offset of the whole range... that's what I get
for inferring too much from a variable name w/o looking at what it actually /does/

I'll sort that out, thanks.

-Eric

> Cheers,
> 
> Dave.
> 

  reply	other threads:[~2020-02-14  1:43 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-13 21:12 [PATCH, RFC] libxfs: use FALLOC_FL_ZERO_RANGE in libxfs_device_zero Eric Sandeen
2020-02-13 23:48 ` Dave Chinner
2020-02-13 23:57   ` Eric Sandeen
2020-02-14  0:25     ` Dave Chinner
2020-02-14  1:05 ` [PATCH V2] " Eric Sandeen
2020-02-14  1:34   ` Dave Chinner
2020-02-14  1:43     ` Eric Sandeen [this message]
2020-02-22  3:22 ` [PATCH V3] " Eric Sandeen
2020-02-22  7:24   ` Darrick J. Wong
2020-02-22 15:23     ` Eric Sandeen
2020-02-25 18:13 ` [PATCH V4] " Eric Sandeen
2020-02-25 18:46   ` Christoph Hellwig
2020-02-25 19:16   ` Darrick J. Wong
2020-02-25 23:33     ` Eric Sandeen

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=d56ce0e2-2a43-1847-8ed4-5d7e13504457@sandeen.net \
    --to=sandeen@sandeen.net \
    --cc=david@fromorbit.com \
    --cc=linux-xfs@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).