]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/s390/char/vmcp.h
s390/vmcp: make use of contiguous memory allocator
[mirror_ubuntu-eoan-kernel.git] / drivers / s390 / char / vmcp.h
CommitLineData
6b979de3 1/*
a53c8fab 2 * Copyright IBM Corp. 2004, 2005
45af3af8 3 * Interface implementation for communication with the z/VM control program
6b979de3
CB
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
6b979de3 15#include <linux/ioctl.h>
d9d119f1 16#include <linux/mutex.h>
6b979de3
CB
17
18#define VMCP_GETCODE _IOR(0x10, 1, int)
19#define VMCP_SETBUF _IOW(0x10, 2, int)
20#define VMCP_GETSIZE _IOR(0x10, 3, int)
21
22struct vmcp_session {
6b979de3 23 char *response;
3f429842
HC
24 unsigned int bufsize;
25 unsigned int cma_alloc : 1;
6b979de3
CB
26 int resp_size;
27 int resp_code;
28 /* As we use copy_from/to_user, which might *
29 * sleep and cannot use a spinlock */
d9d119f1 30 struct mutex mutex;
6b979de3 31};