* [PATCH 1/2] btrfs: enable discard support
@ 2009-10-14 1:03 Christoph Hellwig, Christoph Hellwig
2009-10-14 13:27 ` Chris Mason
0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig, Christoph Hellwig @ 2009-10-14 1:03 UTC (permalink / raw)
To: linux-btrfs
The discard support code in btrfs currently is guarded by ifdefs for
BIO_RW_DISCARD, which is never defines as it's the name of an enum
memeber. Just remove the useless ifdefs to actually enable the code.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: linux-2.6/fs/btrfs/extent-tree.c
===================================================================
--- linux-2.6.orig/fs/btrfs/extent-tree.c 2009-10-07 11:04:18.451256181 -0400
+++ linux-2.6/fs/btrfs/extent-tree.c 2009-10-07 11:04:26.225005458 -0400
@@ -1568,19 +1568,16 @@ static int remove_extent_backref(struct
return ret;
}
-#ifdef BIO_RW_DISCARD
static void btrfs_issue_discard(struct block_device *bdev,
u64 start, u64 len)
{
blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL,
DISCARD_FL_BARRIER);
}
-#endif
static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
u64 num_bytes)
{
-#ifdef BIO_RW_DISCARD
int ret;
u64 map_length = num_bytes;
struct btrfs_multi_bio *multi = NULL;
@@ -1604,9 +1601,6 @@ static int btrfs_discard_extent(struct b
}
return ret;
-#else
- return 0;
-#endif
}
int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] btrfs: enable discard support
2009-10-14 1:03 [PATCH 1/2] btrfs: enable discard support Christoph Hellwig, Christoph Hellwig
@ 2009-10-14 13:27 ` Chris Mason
2009-10-14 13:32 ` Christoph Hellwig
0 siblings, 1 reply; 3+ messages in thread
From: Chris Mason @ 2009-10-14 13:27 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: linux-btrfs
On Wed, Oct 14, 2009 at 03:03:02AM +0200, Christoph Hellwig wrote:
> The discard support code in btrfs currently is guarded by ifdefs for
> BIO_RW_DISCARD, which is never defines as it's the name of an enum
> memeber. Just remove the useless ifdefs to actually enable the code.
Thanks Christoph,
Any objection to me reordering these? That way someone bisecting around
won't hit discard support without expecting it.
-chris
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] btrfs: enable discard support
2009-10-14 13:27 ` Chris Mason
@ 2009-10-14 13:32 ` Christoph Hellwig
0 siblings, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2009-10-14 13:32 UTC (permalink / raw)
To: Chris Mason, Christoph Hellwig, linux-btrfs
On Wed, Oct 14, 2009 at 09:27:04AM -0400, Chris Mason wrote:
> On Wed, Oct 14, 2009 at 03:03:02AM +0200, Christoph Hellwig wrote:
> > The discard support code in btrfs currently is guarded by ifdefs for
> > BIO_RW_DISCARD, which is never defines as it's the name of an enum
> > memeber. Just remove the useless ifdefs to actually enable the code.
>
> Thanks Christoph,
>
> Any objection to me reordering these? That way someone bisecting around
> won't hit discard support without expecting it.
I'm perfectly fine with reordering them.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-10-14 13:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-14 1:03 [PATCH 1/2] btrfs: enable discard support Christoph Hellwig, Christoph Hellwig
2009-10-14 13:27 ` Chris Mason
2009-10-14 13:32 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox