From: Christoph Hellwig <hch@lst.de>
To: qemu-devel@nongnu.org, linux-kernel@vger.kernel.org
Cc: kwolf@redhat.com, stefanha@gmail.com, aliguori@us.ibm.com,
rusty@rustcorp.com.au, prerna@linux.vnet.ibm.com
Subject: [Qemu-devel] [PATCH, RFC] virtio_blk: add cache control support
Date: Tue, 15 Mar 2011 15:16:44 +0100 [thread overview]
Message-ID: <20110315141644.GA30803@lst.de> (raw)
In-Reply-To: <20110315141049.GA30627@lst.de>
Add support for the new dynamic features config space field to allow
en/disabling the write cache at runtime. The userspace interface is
a SCSI-compatible sysfs attribute.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: linux-2.6/drivers/block/virtio_blk.c
===================================================================
--- linux-2.6.orig/drivers/block/virtio_blk.c 2011-03-15 12:16:29.156133695 +0100
+++ linux-2.6/drivers/block/virtio_blk.c 2011-03-15 13:17:30.160634723 +0100
@@ -291,6 +291,73 @@ static ssize_t virtblk_serial_show(struc
}
DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
+static bool virtblk_has_wb_cache(struct virtio_blk *vblk)
+{
+ struct virtio_device *vdev = vblk->vdev;
+ u32 features;
+
+ if (!virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
+ return false;
+ if (!virtio_has_feature(vdev, VIRTIO_BLK_F_DYNAMIC))
+ return true;
+
+ vdev->config->get(vdev, offsetof(struct virtio_blk_config, features),
+ &features, sizeof(features));
+
+ if (features & VIRTIO_BLK_RT_WCE)
+ return true;
+ return false;
+}
+
+static ssize_t virtblk_cache_type_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct gendisk *disk = dev_to_disk(dev);
+
+ if (virtblk_has_wb_cache(disk->private_data))
+ return sprintf(buf, "write back\n");
+ else
+ return sprintf(buf, "write through\n");
+}
+
+static ssize_t virtblk_cache_type_store(struct device *dev,
+ struct device_attribute *attr, const char *buf, size_t count)
+{
+ struct gendisk *disk = dev_to_disk(dev);
+ struct virtio_blk *vblk = disk->private_data;
+ struct virtio_device *vdev = vblk->vdev;
+ u32 features, features2 = 0;
+
+ if (!virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH) ||
+ !virtio_has_feature(vdev, VIRTIO_BLK_F_DYNAMIC))
+ return -ENXIO;
+
+ if (strncmp(buf, "write through", sizeof("write through") - 1) == 0) {
+ ;
+ } else if (strncmp(buf, "write back", sizeof("write back") - 1) == 0) {
+ blk_queue_flush(disk->queue, REQ_FLUSH);
+ features |= VIRTIO_BLK_RT_WCE;
+ } else {
+ return -EINVAL;
+ }
+
+ vdev->config->set(vdev, offsetof(struct virtio_blk_config, features),
+ &features, sizeof(features));
+
+ vdev->config->get(vdev, offsetof(struct virtio_blk_config, features),
+ &features2, sizeof(features2));
+
+ if ((features & VIRTIO_BLK_RT_WCE) !=
+ (features2 & VIRTIO_BLK_RT_WCE))
+ return -EIO;
+
+ if (!(features2 & VIRTIO_BLK_RT_WCE))
+ blk_queue_flush(disk->queue, 0);
+ return count;
+}
+static DEVICE_ATTR(cache_type, S_IRUGO|S_IWUSR,
+ virtblk_cache_type_show, virtblk_cache_type_store);
+
static int __devinit virtblk_probe(struct virtio_device *vdev)
{
struct virtio_blk *vblk;
@@ -377,7 +444,7 @@ static int __devinit virtblk_probe(struc
index++;
/* configure queue flush support */
- if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
+ if (virtblk_has_wb_cache(vblk))
blk_queue_flush(q, REQ_FLUSH);
/* If disk is read-only in the host, the guest should obey */
@@ -456,6 +523,10 @@ static int __devinit virtblk_probe(struc
if (err)
goto out_del_disk;
+ err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_cache_type);
+ if (err)
+ goto out_del_disk;
+
return 0;
out_del_disk:
@@ -499,7 +570,7 @@ static const struct virtio_device_id id_
static unsigned int features[] = {
VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
- VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
+ VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY, VIRTIO_BLK_F_DYNAMIC
};
/*
Index: linux-2.6/include/linux/virtio_blk.h
===================================================================
--- linux-2.6.orig/include/linux/virtio_blk.h 2011-03-15 12:14:28.261632780 +0100
+++ linux-2.6/include/linux/virtio_blk.h 2011-03-15 12:25:56.308634399 +0100
@@ -16,6 +16,7 @@
#define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */
#define VIRTIO_BLK_F_FLUSH 9 /* Cache flush command support */
#define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */
+#define VIRTIO_BLK_F_DYNAMIC 11 /* Dynamic features field */
#define VIRTIO_BLK_ID_BYTES 20 /* ID string length */
@@ -45,6 +46,9 @@ struct virtio_blk_config {
__u16 min_io_size;
/* optimal sustained I/O size in logical blocks. */
__u32 opt_io_size;
+ /* runtime controllable features */
+ __u32 features;
+#define VIRTIO_BLK_RT_WCE (1 << 0)
} __attribute__((packed));
next prev parent reply other threads:[~2011-03-15 14:16 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-15 14:10 [Qemu-devel] [PATCH, RFC 0/4] allow guest control of the volatile write cache Christoph Hellwig
2011-03-15 14:11 ` [Qemu-devel] [PATCH 1/4] block: clarify the meaning of BDRV_O_NOCACHE Christoph Hellwig
2011-03-16 9:42 ` [Qemu-devel] " Stefan Hajnoczi
2011-03-16 9:55 ` Kevin Wolf
2011-03-16 14:08 ` Christoph Hellwig
2011-03-16 17:00 ` Stefan Hajnoczi
2011-03-17 9:07 ` Kevin Wolf
2011-03-17 9:18 ` Stefan Hajnoczi
2011-03-15 14:11 ` [Qemu-devel] [PATCH 2/4] block: add a helper to change writeback mode on the fly Christoph Hellwig
2011-03-15 14:11 ` [Qemu-devel] [PATCH 3/4] ide: wire up setfeatures cache control Christoph Hellwig
2011-03-15 14:11 ` [Qemu-devel] [PATCH 4/4] virtio-blk: add runtime " Christoph Hellwig
2011-03-16 9:49 ` [Qemu-devel] Re: [PATCH 2/4] block: add a helper to change writeback mode on the fly Stefan Hajnoczi
2011-03-16 9:59 ` Kevin Wolf
2011-03-17 14:44 ` [Qemu-devel] " Daniel P. Berrange
2011-03-17 15:11 ` Kevin Wolf
2011-03-17 16:44 ` Stefan Hajnoczi
2011-03-19 8:28 ` Blue Swirl
2011-03-15 14:16 ` Christoph Hellwig [this message]
2011-03-16 4:09 ` [Qemu-devel] Re: [PATCH, RFC] virtio_blk: add cache control support Rusty Russell
2011-03-16 14:09 ` Christoph Hellwig
2011-03-17 5:06 ` Rusty Russell
2011-03-17 14:21 ` Christoph Hellwig
2011-03-24 0:11 ` Rusty Russell
2011-03-24 3:11 ` Anthony Liguori
2011-03-24 3:05 ` Anthony Liguori
2011-03-24 9:54 ` Christian Borntraeger
2011-03-25 5:08 ` Rusty Russell
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=20110315141644.GA30803@lst.de \
--to=hch@lst.de \
--cc=aliguori@us.ibm.com \
--cc=kwolf@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=prerna@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=rusty@rustcorp.com.au \
--cc=stefanha@gmail.com \
/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).