summaryrefslogtreecommitdiffstats
path: root/drivers/s390/cio
diff options
context:
space:
mode:
authorMichael Holzheu <holzheu@linux.vnet.ibm.com>2013-06-06 09:49:09 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2013-06-26 21:10:11 +0200
commit7a9cc6e18b8fe751a41349b188dd468a8317192a (patch)
tree0fe5e8f7afde1186a03ee8dd48f4226bc1f5c4a1 /drivers/s390/cio
parent64150adf89df2ed165d6760f414fa6df07d22628 (diff)
downloadop-kernel-dev-7a9cc6e18b8fe751a41349b188dd468a8317192a.zip
op-kernel-dev-7a9cc6e18b8fe751a41349b188dd468a8317192a.tar.gz
s390/cio: Make /dev/chsc a single-open device
In order to allow serialization of dynamic I/O with this patch the /dev/chsc character device can only be accessed by one single opener. Any subsequent open calls are rejected with EBUSY. Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio')
-rw-r--r--drivers/s390/cio/chsc_sch.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/drivers/s390/cio/chsc_sch.c b/drivers/s390/cio/chsc_sch.c
index 190fc84..5fe9f8c 100644
--- a/drivers/s390/cio/chsc_sch.c
+++ b/drivers/s390/cio/chsc_sch.c
@@ -847,9 +847,27 @@ static long chsc_ioctl(struct file *filp, unsigned int cmd,
}
}
+static atomic_t chsc_ready_for_use = ATOMIC_INIT(1);
+
+static int chsc_open(struct inode *inode, struct file *file)
+{
+ if (!atomic_dec_and_test(&chsc_ready_for_use)) {
+ atomic_inc(&chsc_ready_for_use);
+ return -EBUSY;
+ }
+ return nonseekable_open(inode, file);
+}
+
+static int chsc_release(struct inode *inode, struct file *filp)
+{
+ atomic_inc(&chsc_ready_for_use);
+ return 0;
+}
+
static const struct file_operations chsc_fops = {
.owner = THIS_MODULE,
- .open = nonseekable_open,
+ .open = chsc_open,
+ .release = chsc_release,
.unlocked_ioctl = chsc_ioctl,
.compat_ioctl = chsc_ioctl,
.llseek = no_llseek,
OpenPOWER on IntegriCloud