From: Douglas Gilbert <dgilbert@interlog.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: linux-scsi@vger.kernel.org, linux-ide@vger.kernel.org,
linux-kernel@vger.kernel.org, liml@rtr.ca, jens.axboe@oracle.com,
matthew@wil.cx, dwmw2@infradead.org
Subject: Re: [PATCH 4/7] sd: add support for WRITE SAME (16) with unmap bit
Date: Sat, 29 Aug 2009 20:43:27 -0400 [thread overview]
Message-ID: <4A99CB2F.9000000@interlog.com> (raw)
In-Reply-To: <20090829231121.713422216@bombadil.infradead.org>
Christoph Hellwig wrote:
> Add a prepare_discard function to sd that sends a WRITE SAME request with
> the unmap bit set to the device if it advertises thin provisioning support.
>
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
>
> Index: linux-2.6/drivers/scsi/sd.c
> ===================================================================
> --- linux-2.6.orig/drivers/scsi/sd.c 2009-08-29 19:19:36.067371669 -0300
> +++ linux-2.6/drivers/scsi/sd.c 2009-08-29 19:26:20.723754241 -0300
> @@ -911,6 +911,50 @@ static void sd_prepare_flush(struct requ
> rq->cmd_len = 10;
> }
>
> +static int sd_prepare_discard(struct request_queue *q, struct request *rq,
> + struct bio *bio)
> +{
> + struct scsi_device *sdp = q->queuedata;
> + struct page *page = alloc_page(GFP_KERNEL);
> +
> + if (!page)
> + return -ENOMEM;
> +
> + rq->cmd_type = REQ_TYPE_BLOCK_PC;
> + rq->timeout = SD_TIMEOUT;
> + rq->cmd[0] = WRITE_SAME_16;
> + rq->cmd[1] = 0x8; /* UNMAP bit */
> + rq->cmd[2] = sizeof(bio->bi_sector) > 4 ?
> + (unsigned char) (bio->bi_sector >> 56) & 0xff : 0;
> + rq->cmd[3] = sizeof(bio->bi_sector) > 4 ?
> + (unsigned char) (bio->bi_sector >> 48) & 0xff : 0;
> + rq->cmd[4] = sizeof(bio->bi_sector) > 4 ?
> + (unsigned char) (bio->bi_sector >> 40) & 0xff : 0;
> + rq->cmd[5] = sizeof(bio->bi_sector) > 4 ?
> + (unsigned char) (bio->bi_sector >> 32) & 0xff : 0;
> + rq->cmd[6] = (unsigned char) (bio->bi_sector >> 24) & 0xff;
> + rq->cmd[7] = (unsigned char) (bio->bi_sector >> 16) & 0xff;
> + rq->cmd[8] = (unsigned char) (bio->bi_sector >> 8) & 0xff;
> + rq->cmd[9] = (unsigned char) bio->bi_sector & 0xff;
> + rq->cmd[10] = (unsigned char) (bio_sectors(bio) >> 24) & 0xff;
> + rq->cmd[11] = (unsigned char) (bio_sectors(bio) >> 16) & 0xff;
> + rq->cmd[12] = (unsigned char) (bio_sectors(bio) >> 8) & 0xff;
> + rq->cmd[13] = (unsigned char) bio_sectors(bio) & 0xff;
> + rq->cmd[14] = 0;
> + rq->cmd[15] = 0;
> + rq->cmd_len = 16;
> +
> + printk(KERN_INFO "umap, lba = 0x%lld, len = %d\n",
> + bio->bi_sector, bio_sectors(bio));
> +
> + bio->bi_size = 0;
> + if (bio_add_pc_page(q, bio, page, sdp->sector_size, 0) <
> + sdp->sector_size)
> + return -EIO;
> +
> + return 0;
> +}
> +
> static void sd_rescan(struct device *dev)
> {
> struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
> @@ -1369,6 +1413,9 @@ static int read_capacity_16(struct scsi_
> sd_printk(KERN_NOTICE, sdkp,
> "physical block alignment offset: %u\n", alignment);
>
> + if (buffer[14] & 0x80)
> + sdkp->thin_provisioning = 1;
> +
So you are checking the TPE bit (Thin Provisioning Enabled) but
not the TPRZ bit (Thin Provisioning Read Zeros). Shouldn't
there also be a sdkp->thin_provisioning_read_zeros bit defined
in struct scsi_disk?
Is your application well defined when TPRZ==0 ?
Doug Gilbert
next prev parent reply other threads:[~2009-08-30 0:43 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-29 23:03 [PATCH 0/7] discard support revisited Christoph Hellwig
2009-08-29 23:03 ` [PATCH 1/7] Make DISCARD_BARRIER and DISCARD_NOBARRIER writes instead of reads Christoph Hellwig
2009-09-03 17:52 ` David Woodhouse
2009-09-03 17:56 ` Matthew Wilcox
2009-08-29 23:03 ` [PATCH 2/7] block: use blkdev_issue_discard in blk_ioctl_discard Christoph Hellwig
2009-09-01 9:06 ` Steven Whitehouse
2009-09-11 22:26 ` Christoph Hellwig
2009-09-14 9:40 ` Jens Axboe
2009-08-29 23:03 ` [PATCH 3/7] block: discard may need to allocate pages Christoph Hellwig
2009-08-29 23:03 ` [PATCH 4/7] sd: add support for WRITE SAME (16) with unmap bit Christoph Hellwig
2009-08-30 0:43 ` Douglas Gilbert [this message]
2009-08-30 1:05 ` Christoph Hellwig
2009-08-30 2:43 ` Douglas Gilbert
2009-08-30 2:48 ` Christoph Hellwig
2009-08-30 11:12 ` Sergei Shtylyov
2009-08-30 17:14 ` Christoph Hellwig
2009-08-29 23:03 ` [PATCH 5/7] libata: Add support for TRIM Christoph Hellwig
2009-08-29 23:03 ` [PATCH 6/7] block: allow large discard requests Christoph Hellwig
2009-08-30 2:49 ` Mark Lord
2009-08-30 2:50 ` Matthew Wilcox
2009-08-30 2:52 ` Mark Lord
2009-08-30 2:56 ` Christoph Hellwig
2009-08-29 23:03 ` [PATCH 7/7] xfs: add batches discard support Christoph Hellwig
2009-08-29 23:37 ` [PATCH 0/7] discard support revisited Matthew Wilcox
2009-08-30 2:15 ` Christoph Hellwig
2009-08-30 3:03 ` Matthew Wilcox
2009-08-30 20:17 ` James Bottomley
2009-08-30 21:42 ` Matthew Wilcox
2009-08-30 22:48 ` Christoph Hellwig
2009-09-02 19:46 ` Matthew Wilcox
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=4A99CB2F.9000000@interlog.com \
--to=dgilbert@interlog.com \
--cc=dwmw2@infradead.org \
--cc=hch@infradead.org \
--cc=jens.axboe@oracle.com \
--cc=liml@rtr.ca \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=matthew@wil.cx \
/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).