From: Changpeng Liu Date: Thu, 31 Aug 2017 03:22:49 +0000 (+0800) Subject: nvme: fix the definition of the doorbell buffer config support bit X-Git-Tag: v4.12.11~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdacc5fcf4f905e732fb3420e20602da333285e9;p=thirdparty%2Fkernel%2Fstable.git nvme: fix the definition of the doorbell buffer config support bit commit 223694b9ae8bfba99f3528d49d07a740af6ff95a upstream. NVMe 1.3 specification defines the Optional Admin Command Support feature flags, bit 8 set to '1' then the controller supports the Doorbell Buffer Config command. Bit 7 is used for Virtualization Mangement command. Signed-off-by: Changpeng Liu Reviewed-by: Sagi Grimberg Reviewed-by: Max Gurtovoy Reviewed-by: Johannes Thumshirn Signed-off-by: Christoph Hellwig Fixes: f9f38e33 ("nvme: improve performance for virtual NVMe devices") Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/nvme.h b/include/linux/nvme.h index b625bacf37efa..f4f9481a0c8ac 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -245,7 +245,7 @@ enum { NVME_CTRL_ONCS_WRITE_ZEROES = 1 << 3, NVME_CTRL_VWC_PRESENT = 1 << 0, NVME_CTRL_OACS_SEC_SUPP = 1 << 0, - NVME_CTRL_OACS_DBBUF_SUPP = 1 << 7, + NVME_CTRL_OACS_DBBUF_SUPP = 1 << 8, }; struct nvme_lbaf {