From: Eric Sandeen <sandeen@redhat.com>
To: dsterba@suse.cz, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs-progs: check if device supports trim
Date: Mon, 23 Sep 2013 10:46:02 -0500 [thread overview]
Message-ID: <5240623A.7070309@redhat.com> (raw)
In-Reply-To: <20130923154403.GP6810@twin.jikos.cz>
On 9/23/13 10:44 AM, David Sterba wrote:
> On Mon, Sep 23, 2013 at 10:08:08AM -0500, Eric Sandeen wrote:
>> On 9/20/13 11:42 AM, David Sterba wrote:
>>> The message about trim was printed unconditionally, we should check if
>>> trim is supported at all.
>>
>> Good idea, but I wonder if there's any risk that discard(0,0) will ever
>> be optimized away on the kernel side & pass unconditionally?
>
> I hope the checks in blkdev_issue_discard() stay in the order as of now:
>
> 40 int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
> 41 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags)
> 42 {
> ...
> 52
> 53 if (!q)
> 54 return -ENXIO;
> 55
> 56 if (!blk_queue_discard(q))
> 57 return -EOPNOTSUPP;
>
> here it returns no matter what the arguments are, setting length to 0 is
> just cautious.
>
> 59 /* Zero-sector (unknown) and one-sector granularities are the same. */
> 60 granularity = max(q->limits.discard_granularity >> 9, 1U);
> 61 alignment = bdev_discard_alignment(bdev) >> 9;
> 62 alignment = sector_div(alignment, granularity);
> 63
>
>> I was thinking we could get this from blkid, but maybe not.
>
> Possibly yes, with other information like rotational etc.
>
> Alternatively,
>
> /sys/block/sdx/queue/dicard_granularity > 0 means that the device
> supports discard, but that's imo even more fragile than the direct
> call to discard.
Perhaps; and I don't think libblkid gives us easy access to that anyway,
at least I didn't see it on a quick look.
So yeah, I think it's fine as you sent it; it doesn't actually change
behavior anyway other than the printf.
Thanks,
-Eric
prev parent reply other threads:[~2013-09-23 15:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-20 16:42 [PATCH] btrfs-progs: check if device supports trim David Sterba
2013-09-23 15:08 ` Eric Sandeen
2013-09-23 15:44 ` David Sterba
2013-09-23 15:46 ` Eric Sandeen [this message]
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=5240623A.7070309@redhat.com \
--to=sandeen@redhat.com \
--cc=dsterba@suse.cz \
--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).