|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] xen_disk: support cache backend option
Il 26/06/2013 19:48, Stefano Stabellini ha scritto:
> + if (!strcmp(blkdev->cache, "none")) {
> + qflags = BDRV_O_NATIVE_AIO | BDRV_O_NOCACHE;
> + } else if (!strcmp(blkdev->cache, "writethrough")) {
> + qflags = 0;
> + } else {
> + /* default to writeback */
> + qflags = BDRV_O_NATIVE_AIO | BDRV_O_CACHE_WB;
> + }
You can use bdrv_parse_cache_flags. Note that BDRV_O_NATIVE_AIO
requires BDRV_O_NOCACHE too (but if you only specify BDRV_O_NATIVE_AIO
it's a no-op, not an error).
Paolo
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |