mirror of https://gitee.com/openkylin/qemu.git
xen/9pfs: increase max ring order to 9
The max order allowed by the protocol is 9. Increase the max order supported by QEMU to 9 to increase performance. Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Message-Id: <20200521192627.15259-3-sstabellini@kernel.org> Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
parent
a4c4d46272
commit
84af75577c
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#define VERSIONS "1"
|
#define VERSIONS "1"
|
||||||
#define MAX_RINGS 8
|
#define MAX_RINGS 8
|
||||||
#define MAX_RING_ORDER 8
|
#define MAX_RING_ORDER 9
|
||||||
|
|
||||||
typedef struct Xen9pfsRing {
|
typedef struct Xen9pfsRing {
|
||||||
struct Xen9pfsDev *priv;
|
struct Xen9pfsDev *priv;
|
||||||
|
|
Loading…
Reference in New Issue