diff options
author | Vitaly Kuznetsov <vkuznets@redhat.com> | 2015-04-12 03:07:58 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-24 21:17:42 +0200 |
commit | a4d1ee5b0255a135fead1d62a7fc7e6fe718b66e (patch) | |
tree | b8dd663c221c93ad4655231141b951d2827f461c /include | |
parent | Drivers: hv: vss: full handshake support (diff) | |
download | linux-a4d1ee5b0255a135fead1d62a7fc7e6fe718b66e.tar.xz linux-a4d1ee5b0255a135fead1d62a7fc7e6fe718b66e.zip |
Drivers: hv: fcopy: full handshake support
Introduce FCOPY_VERSION_1 to support kernel replying to the negotiation
message with its own version.
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Tested-by: Alex Ng <alexng@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/hyperv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/hyperv.h b/include/uapi/linux/hyperv.h index 66c76df2c32d..e4c0a35d6417 100644 --- a/include/uapi/linux/hyperv.h +++ b/include/uapi/linux/hyperv.h @@ -105,7 +105,8 @@ struct hv_vss_msg { */ #define FCOPY_VERSION_0 0 -#define FCOPY_CURRENT_VERSION FCOPY_VERSION_0 +#define FCOPY_VERSION_1 1 +#define FCOPY_CURRENT_VERSION FCOPY_VERSION_1 #define W_MAX_PATH 260 enum hv_fcopy_op { |