aboutsummaryrefslogtreecommitdiff
path: root/include/uapi/linux/hyperv.h
AgeCommit message (Collapse)AuthorFilesLines
2014-09-23Drivers: hv: util: Properly pack the data for file copy functionalityK. Y. Srinivasan1-1/+1
Properly pack the data for file copy functionality. Patch based on investigation done by Matej Muzila <[email protected]> Signed-off-by: K. Y. Srinivasan <[email protected]> Reported-by: <[email protected]> Cc: <[email protected]> Acked-by: Jason Wang <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2014-04-16Tools: hv: Handle the case when the target file exists correctlyK. Y. Srinivasan1-0/+1
Return the appropriate error code and handle the case when the target file exists correctly. This fixes a bug. Signed-off-by: K. Y. Srinivasan <[email protected]> Cc: <[email protected]> [3.14] Signed-off-by: Greg Kroah-Hartman <[email protected]>
2014-02-18Drivers: hv: Implement the file copy serviceK. Y. Srinivasan1-0/+46
Implement the file copy service for Linux guests on Hyper-V. This permits the host to copy a file (over VMBUS) into the guest. This facility is part of "guest integration services" supported on the Windows platform. Here is a link that provides additional details on this functionality: http://technet.microsoft.com/en-us/library/dn464282.aspx In V1 version of the patch I have addressed comments from Olaf Hering <[email protected]> and Dan Carpenter <[email protected]> In V2 version of this patch I did some minor cleanup (making some globals static). In V4 version of the patch I have addressed all of Olaf's most recent set of comments/concerns. In V5 version of the patch I had addressed Greg's most recent comments. I would like to thank Greg for suggesting that I use misc device; it has significantly simplified the code. In V6 version of the patch I have cleaned up error message based on Olaf's comments. I have also rebased the patch based on the current tip. In this version of the patch, I have addressed the latest comments from Greg. Signed-off-by: K. Y. Srinivasan <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2014-02-07hv: Add hyperv.h to uapi headersBjarke Istrup Pedersen1-0/+344
This patch adds the hyperv.h header to the uapi folder, and adds it to the Kbuild file. Doing this enables compiling userspace Hyper-V tools using the installed headers. Version 2: Split UAPI parts into new header, instead of duplicating. Signed-off-by: Bjarke Istrup Pedersen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>