vmcp.h 839 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright IBM Corp. 2004, 2005
  3. * Interface implementation for communication with the z/VM control program
  4. * Version 1.0
  5. * Author(s): Christian Borntraeger <cborntra@de.ibm.com>
  6. *
  7. *
  8. * z/VMs CP offers the possibility to issue commands via the diagnose code 8
  9. * this driver implements a character device that issues these commands and
  10. * returns the answer of CP.
  11. *
  12. * The idea of this driver is based on cpint from Neale Ferguson
  13. */
  14. #include <linux/ioctl.h>
  15. #include <linux/mutex.h>
  16. #define VMCP_GETCODE _IOR(0x10, 1, int)
  17. #define VMCP_SETBUF _IOW(0x10, 2, int)
  18. #define VMCP_GETSIZE _IOR(0x10, 3, int)
  19. struct vmcp_session {
  20. unsigned int bufsize;
  21. char *response;
  22. int resp_size;
  23. int resp_code;
  24. /* As we use copy_from/to_user, which might *
  25. * sleep and cannot use a spinlock */
  26. struct mutex mutex;
  27. };