diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2014-03-07 00:10:34 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-08 22:15:52 -0800 |
commit | 7e5ec36834a5752304dc0751dfab42ba6ad64a85 (patch) | |
tree | a6ce194edaf305160757405d24b87ac7d0983d9b /include/linux/hyperv.h | |
parent | a246b97358bcb888fe3d994d120751c3622c3239 (diff) | |
download | linux-stable-7e5ec36834a5752304dc0751dfab42ba6ad64a85.tar.gz linux-stable-7e5ec36834a5752304dc0751dfab42ba6ad64a85.tar.bz2 linux-stable-7e5ec36834a5752304dc0751dfab42ba6ad64a85.zip |
Drivers: hv: vmbus: Increase the limit on the number of pfns we can handle
Increase the number of PFNs we can handle in a single vmbus packet.
Some network packets may have more PFNs than the current limit we have.
This is not a bug and this patch can be applied to the *next tree.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/hyperv.h')
-rw-r--r-- | include/linux/hyperv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 330ec44de575..ab7359fde987 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -37,7 +37,7 @@ #include <linux/mod_devicetable.h> -#define MAX_PAGE_BUFFER_COUNT 19 +#define MAX_PAGE_BUFFER_COUNT 32 #define MAX_MULTIPAGE_BUFFER_COUNT 32 /* 128K */ #pragma pack(push, 1) |