| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *      	An implementation of a loadable kernel mode driver providing | 
|  | 3 | *		multiple kernel/user space bidirectional communications links. | 
|  | 4 | * | 
| Alan Cox | 526719b | 2008-10-27 15:19:48 +0000 | [diff] [blame] | 5 | * 		Author: 	Alan Cox <alan@lxorguk.ukuu.org.uk> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * | 
|  | 7 | *		This program is free software; you can redistribute it and/or | 
|  | 8 | *		modify it under the terms of the GNU General Public License | 
|  | 9 | *		as published by the Free Software Foundation; either version | 
|  | 10 | *		2 of the License, or (at your option) any later version. | 
|  | 11 | * | 
|  | 12 | *              Adapted to become the Linux 2.0 Coda pseudo device | 
|  | 13 | *              Peter  Braam  <braam@maths.ox.ac.uk> | 
|  | 14 | *              Michael Callahan <mjc@emmy.smith.edu> | 
|  | 15 | * | 
|  | 16 | *              Changes for Linux 2.1 | 
|  | 17 | *              Copyright (c) 1997 Carnegie-Mellon University | 
|  | 18 | */ | 
|  | 19 |  | 
|  | 20 | #include <linux/module.h> | 
|  | 21 | #include <linux/errno.h> | 
|  | 22 | #include <linux/kernel.h> | 
|  | 23 | #include <linux/major.h> | 
|  | 24 | #include <linux/time.h> | 
| Alexey Dobriyan | a99bbaf | 2009-10-04 16:11:37 +0400 | [diff] [blame] | 25 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/slab.h> | 
|  | 27 | #include <linux/ioport.h> | 
|  | 28 | #include <linux/fcntl.h> | 
|  | 29 | #include <linux/delay.h> | 
|  | 30 | #include <linux/skbuff.h> | 
|  | 31 | #include <linux/proc_fs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/vmalloc.h> | 
|  | 33 | #include <linux/fs.h> | 
|  | 34 | #include <linux/file.h> | 
|  | 35 | #include <linux/poll.h> | 
|  | 36 | #include <linux/init.h> | 
|  | 37 | #include <linux/list.h> | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 38 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/device.h> | 
|  | 40 | #include <asm/io.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/poll.h> | 
|  | 42 | #include <asm/uaccess.h> | 
|  | 43 |  | 
|  | 44 | #include <linux/coda.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/coda_psdev.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
| Al Viro | 31a203d | 2011-01-12 16:36:09 -0500 | [diff] [blame] | 47 | #include "coda_linux.h" | 
|  | 48 |  | 
| Adrian Bunk | c98d8cf | 2006-03-24 03:15:53 -0800 | [diff] [blame] | 49 | #include "coda_int.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | /* statistics */ | 
|  | 52 | int           coda_hard;         /* allows signals during upcalls */ | 
|  | 53 | unsigned long coda_timeout = 30; /* .. secs, then signals will dequeue */ | 
|  | 54 |  | 
|  | 55 |  | 
|  | 56 | struct venus_comm coda_comms[MAX_CODADEVS]; | 
| gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 57 | static struct class *coda_psdev_class; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
|  | 59 | /* | 
|  | 60 | * Device operations | 
|  | 61 | */ | 
|  | 62 |  | 
|  | 63 | static unsigned int coda_psdev_poll(struct file *file, poll_table * wait) | 
|  | 64 | { | 
|  | 65 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; | 
|  | 66 | unsigned int mask = POLLOUT | POLLWRNORM; | 
|  | 67 |  | 
|  | 68 | poll_wait(file, &vcp->vc_waitq, wait); | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 69 | mutex_lock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | if (!list_empty(&vcp->vc_pending)) | 
|  | 71 | mask |= POLLIN | POLLRDNORM; | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 72 | mutex_unlock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
|  | 74 | return mask; | 
|  | 75 | } | 
|  | 76 |  | 
| Arnd Bergmann | 9771839 | 2010-04-27 16:24:24 +0200 | [diff] [blame] | 77 | static long coda_psdev_ioctl(struct file * filp, unsigned int cmd, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { | 
|  | 79 | unsigned int data; | 
|  | 80 |  | 
|  | 81 | switch(cmd) { | 
|  | 82 | case CIOC_KERNEL_VERSION: | 
|  | 83 | data = CODA_KERNEL_VERSION; | 
|  | 84 | return put_user(data, (int __user *) arg); | 
|  | 85 | default: | 
|  | 86 | return -ENOTTY; | 
|  | 87 | } | 
|  | 88 |  | 
|  | 89 | return 0; | 
|  | 90 | } | 
|  | 91 |  | 
|  | 92 | /* | 
|  | 93 | *	Receive a message written by Venus to the psdev | 
|  | 94 | */ | 
|  | 95 |  | 
|  | 96 | static ssize_t coda_psdev_write(struct file *file, const char __user *buf, | 
|  | 97 | size_t nbytes, loff_t *off) | 
|  | 98 | { | 
|  | 99 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; | 
|  | 100 | struct upc_req *req = NULL; | 
|  | 101 | struct upc_req *tmp; | 
|  | 102 | struct list_head *lh; | 
|  | 103 | struct coda_in_hdr hdr; | 
|  | 104 | ssize_t retval = 0, count = 0; | 
|  | 105 | int error; | 
|  | 106 |  | 
|  | 107 | /* Peek at the opcode, uniquefier */ | 
|  | 108 | if (copy_from_user(&hdr, buf, 2 * sizeof(u_long))) | 
|  | 109 | return -EFAULT; | 
|  | 110 |  | 
|  | 111 | if (DOWNCALL(hdr.opcode)) { | 
| Yoshihisa Abe | f7cc02b | 2010-10-25 02:03:45 -0400 | [diff] [blame] | 112 | union outputArgs *dcbuf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | int size = sizeof(*dcbuf); | 
|  | 114 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | if  ( nbytes < sizeof(struct coda_out_hdr) ) { | 
|  | 116 | printk("coda_downcall opc %d uniq %d, not enough!\n", | 
|  | 117 | hdr.opcode, hdr.unique); | 
|  | 118 | count = nbytes; | 
|  | 119 | goto out; | 
|  | 120 | } | 
|  | 121 | if ( nbytes > size ) { | 
|  | 122 | printk("Coda: downcall opc %d, uniq %d, too much!", | 
|  | 123 | hdr.opcode, hdr.unique); | 
|  | 124 | nbytes = size; | 
|  | 125 | } | 
|  | 126 | CODA_ALLOC(dcbuf, union outputArgs *, nbytes); | 
|  | 127 | if (copy_from_user(dcbuf, buf, nbytes)) { | 
|  | 128 | CODA_FREE(dcbuf, nbytes); | 
|  | 129 | retval = -EFAULT; | 
|  | 130 | goto out; | 
|  | 131 | } | 
|  | 132 |  | 
|  | 133 | /* what downcall errors does Venus handle ? */ | 
| Yoshihisa Abe | f7cc02b | 2010-10-25 02:03:45 -0400 | [diff] [blame] | 134 | error = coda_downcall(vcp, hdr.opcode, dcbuf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 |  | 
|  | 136 | CODA_FREE(dcbuf, nbytes); | 
|  | 137 | if (error) { | 
|  | 138 | printk("psdev_write: coda_downcall error: %d\n", error); | 
|  | 139 | retval = error; | 
|  | 140 | goto out; | 
|  | 141 | } | 
|  | 142 | count = nbytes; | 
|  | 143 | goto out; | 
|  | 144 | } | 
|  | 145 |  | 
|  | 146 | /* Look for the message on the processing queue. */ | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 147 | mutex_lock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | list_for_each(lh, &vcp->vc_processing) { | 
|  | 149 | tmp = list_entry(lh, struct upc_req , uc_chain); | 
|  | 150 | if (tmp->uc_unique == hdr.unique) { | 
|  | 151 | req = tmp; | 
|  | 152 | list_del(&req->uc_chain); | 
|  | 153 | break; | 
|  | 154 | } | 
|  | 155 | } | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 156 | mutex_unlock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 |  | 
|  | 158 | if (!req) { | 
|  | 159 | printk("psdev_write: msg (%d, %d) not found\n", | 
|  | 160 | hdr.opcode, hdr.unique); | 
|  | 161 | retval = -ESRCH; | 
|  | 162 | goto out; | 
|  | 163 | } | 
|  | 164 |  | 
|  | 165 | /* move data into response buffer. */ | 
|  | 166 | if (req->uc_outSize < nbytes) { | 
|  | 167 | printk("psdev_write: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n", | 
|  | 168 | req->uc_outSize, (long)nbytes, hdr.opcode, hdr.unique); | 
|  | 169 | nbytes = req->uc_outSize; /* don't have more space! */ | 
|  | 170 | } | 
|  | 171 | if (copy_from_user(req->uc_data, buf, nbytes)) { | 
| Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 172 | req->uc_flags |= CODA_REQ_ABORT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | wake_up(&req->uc_sleep); | 
|  | 174 | retval = -EFAULT; | 
|  | 175 | goto out; | 
|  | 176 | } | 
|  | 177 |  | 
|  | 178 | /* adjust outsize. is this useful ?? */ | 
| Jan Harkes | 112d421 | 2010-09-17 23:26:01 -0400 | [diff] [blame] | 179 | req->uc_outSize = nbytes; | 
|  | 180 | req->uc_flags |= CODA_REQ_WRITE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | count = nbytes; | 
|  | 182 |  | 
|  | 183 | /* Convert filedescriptor into a file handle */ | 
|  | 184 | if (req->uc_opcode == CODA_OPEN_BY_FD) { | 
|  | 185 | struct coda_open_by_fd_out *outp = | 
|  | 186 | (struct coda_open_by_fd_out *)req->uc_data; | 
| Jan Harkes | 38c2e43 | 2007-07-19 01:48:41 -0700 | [diff] [blame] | 187 | if (!outp->oh.result) | 
|  | 188 | outp->fh = fget(outp->fd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } | 
|  | 190 |  | 
|  | 191 | wake_up(&req->uc_sleep); | 
|  | 192 | out: | 
|  | 193 | return(count ? count : retval); | 
|  | 194 | } | 
|  | 195 |  | 
|  | 196 | /* | 
|  | 197 | *	Read a message from the kernel to Venus | 
|  | 198 | */ | 
|  | 199 |  | 
|  | 200 | static ssize_t coda_psdev_read(struct file * file, char __user * buf, | 
|  | 201 | size_t nbytes, loff_t *off) | 
|  | 202 | { | 
|  | 203 | DECLARE_WAITQUEUE(wait, current); | 
|  | 204 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; | 
|  | 205 | struct upc_req *req; | 
|  | 206 | ssize_t retval = 0, count = 0; | 
|  | 207 |  | 
|  | 208 | if (nbytes == 0) | 
|  | 209 | return 0; | 
|  | 210 |  | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 211 | mutex_lock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 |  | 
|  | 213 | add_wait_queue(&vcp->vc_waitq, &wait); | 
|  | 214 | set_current_state(TASK_INTERRUPTIBLE); | 
|  | 215 |  | 
|  | 216 | while (list_empty(&vcp->vc_pending)) { | 
|  | 217 | if (file->f_flags & O_NONBLOCK) { | 
|  | 218 | retval = -EAGAIN; | 
|  | 219 | break; | 
|  | 220 | } | 
|  | 221 | if (signal_pending(current)) { | 
|  | 222 | retval = -ERESTARTSYS; | 
|  | 223 | break; | 
|  | 224 | } | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 225 | mutex_unlock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | schedule(); | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 227 | mutex_lock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } | 
|  | 229 |  | 
|  | 230 | set_current_state(TASK_RUNNING); | 
|  | 231 | remove_wait_queue(&vcp->vc_waitq, &wait); | 
|  | 232 |  | 
|  | 233 | if (retval) | 
|  | 234 | goto out; | 
|  | 235 |  | 
|  | 236 | req = list_entry(vcp->vc_pending.next, struct upc_req,uc_chain); | 
|  | 237 | list_del(&req->uc_chain); | 
|  | 238 |  | 
|  | 239 | /* Move the input args into userspace */ | 
|  | 240 | count = req->uc_inSize; | 
|  | 241 | if (nbytes < req->uc_inSize) { | 
|  | 242 | printk ("psdev_read: Venus read %ld bytes of %d in message\n", | 
|  | 243 | (long)nbytes, req->uc_inSize); | 
|  | 244 | count = nbytes; | 
|  | 245 | } | 
|  | 246 |  | 
|  | 247 | if (copy_to_user(buf, req->uc_data, count)) | 
|  | 248 | retval = -EFAULT; | 
|  | 249 |  | 
|  | 250 | /* If request was not a signal, enqueue and don't free */ | 
| Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 251 | if (!(req->uc_flags & CODA_REQ_ASYNC)) { | 
|  | 252 | req->uc_flags |= CODA_REQ_READ; | 
| Akinobu Mita | 8e13059 | 2006-06-26 00:24:37 -0700 | [diff] [blame] | 253 | list_add_tail(&(req->uc_chain), &vcp->vc_processing); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | goto out; | 
|  | 255 | } | 
|  | 256 |  | 
|  | 257 | CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr)); | 
| Jan Harkes | 37461e1 | 2007-07-19 01:48:48 -0700 | [diff] [blame] | 258 | kfree(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | out: | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 260 | mutex_unlock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return (count ? count : retval); | 
|  | 262 | } | 
|  | 263 |  | 
|  | 264 | static int coda_psdev_open(struct inode * inode, struct file * file) | 
|  | 265 | { | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 266 | struct venus_comm *vcp; | 
|  | 267 | int idx, err; | 
|  | 268 |  | 
|  | 269 | idx = iminor(inode); | 
|  | 270 | if (idx < 0 || idx >= MAX_CODADEVS) | 
|  | 271 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 |  | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 273 | err = -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | vcp = &coda_comms[idx]; | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 275 | mutex_lock(&vcp->vc_mutex); | 
|  | 276 |  | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 277 | if (!vcp->vc_inuse) { | 
|  | 278 | vcp->vc_inuse++; | 
|  | 279 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | INIT_LIST_HEAD(&vcp->vc_pending); | 
|  | 281 | INIT_LIST_HEAD(&vcp->vc_processing); | 
|  | 282 | init_waitqueue_head(&vcp->vc_waitq); | 
|  | 283 | vcp->vc_sb = NULL; | 
|  | 284 | vcp->vc_seq = 0; | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 285 |  | 
|  | 286 | file->private_data = vcp; | 
|  | 287 | err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 |  | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 290 | mutex_unlock(&vcp->vc_mutex); | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 291 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } | 
|  | 293 |  | 
|  | 294 |  | 
|  | 295 | static int coda_psdev_release(struct inode * inode, struct file * file) | 
|  | 296 | { | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 297 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; | 
|  | 298 | struct upc_req *req, *tmp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 |  | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 300 | if (!vcp || !vcp->vc_inuse ) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | printk("psdev_release: Not open.\n"); | 
|  | 302 | return -1; | 
|  | 303 | } | 
|  | 304 |  | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 305 | mutex_lock(&vcp->vc_mutex); | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 306 |  | 
|  | 307 | /* Wakeup clients so they can return. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | list_for_each_entry_safe(req, tmp, &vcp->vc_pending, uc_chain) { | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 309 | list_del(&req->uc_chain); | 
|  | 310 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | /* Async requests need to be freed here */ | 
| Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 312 | if (req->uc_flags & CODA_REQ_ASYNC) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr)); | 
| Jan Harkes | 37461e1 | 2007-07-19 01:48:48 -0700 | [diff] [blame] | 314 | kfree(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | continue; | 
|  | 316 | } | 
| Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 317 | req->uc_flags |= CODA_REQ_ABORT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | wake_up(&req->uc_sleep); | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 319 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 |  | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 321 | list_for_each_entry_safe(req, tmp, &vcp->vc_processing, uc_chain) { | 
|  | 322 | list_del(&req->uc_chain); | 
|  | 323 |  | 
| Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 324 | req->uc_flags |= CODA_REQ_ABORT; | 
| Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 325 | wake_up(&req->uc_sleep); | 
|  | 326 | } | 
|  | 327 |  | 
|  | 328 | file->private_data = NULL; | 
|  | 329 | vcp->vc_inuse--; | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 330 | mutex_unlock(&vcp->vc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | return 0; | 
|  | 332 | } | 
|  | 333 |  | 
|  | 334 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 335 | static const struct file_operations coda_psdev_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | .owner		= THIS_MODULE, | 
|  | 337 | .read		= coda_psdev_read, | 
|  | 338 | .write		= coda_psdev_write, | 
|  | 339 | .poll		= coda_psdev_poll, | 
| Arnd Bergmann | 9771839 | 2010-04-27 16:24:24 +0200 | [diff] [blame] | 340 | .unlocked_ioctl	= coda_psdev_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | .open		= coda_psdev_open, | 
|  | 342 | .release	= coda_psdev_release, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 343 | .llseek		= noop_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | }; | 
|  | 345 |  | 
|  | 346 | static int init_coda_psdev(void) | 
|  | 347 | { | 
|  | 348 | int i, err = 0; | 
|  | 349 | if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) { | 
|  | 350 | printk(KERN_ERR "coda_psdev: unable to get major %d\n", | 
|  | 351 | CODA_PSDEV_MAJOR); | 
|  | 352 | return -EIO; | 
|  | 353 | } | 
| gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 354 | coda_psdev_class = class_create(THIS_MODULE, "coda"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | if (IS_ERR(coda_psdev_class)) { | 
|  | 356 | err = PTR_ERR(coda_psdev_class); | 
|  | 357 | goto out_chrdev; | 
|  | 358 | } | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 359 | for (i = 0; i < MAX_CODADEVS; i++) { | 
|  | 360 | mutex_init(&(&coda_comms[i])->vc_mutex); | 
| Greg Kroah-Hartman | a9b1261 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 361 | device_create(coda_psdev_class, NULL, | 
|  | 362 | MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i); | 
| Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 363 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | coda_sysctl_init(); | 
|  | 365 | goto out; | 
|  | 366 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | out_chrdev: | 
|  | 368 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); | 
|  | 369 | out: | 
|  | 370 | return err; | 
|  | 371 | } | 
|  | 372 |  | 
| Jan Harkes | 5b7f13b | 2007-07-19 01:48:52 -0700 | [diff] [blame] | 373 | MODULE_AUTHOR("Jan Harkes, Peter J. Braam"); | 
|  | 374 | MODULE_DESCRIPTION("Coda Distributed File System VFS interface"); | 
|  | 375 | MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | MODULE_LICENSE("GPL"); | 
| Jan Harkes | 5b7f13b | 2007-07-19 01:48:52 -0700 | [diff] [blame] | 377 | MODULE_VERSION("6.6"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | static int __init init_coda(void) | 
|  | 380 | { | 
|  | 381 | int status; | 
|  | 382 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 |  | 
|  | 384 | status = coda_init_inodecache(); | 
|  | 385 | if (status) | 
|  | 386 | goto out2; | 
|  | 387 | status = init_coda_psdev(); | 
|  | 388 | if ( status ) { | 
|  | 389 | printk("Problem (%d) in init_coda_psdev\n", status); | 
|  | 390 | goto out1; | 
|  | 391 | } | 
|  | 392 |  | 
|  | 393 | status = register_filesystem(&coda_fs_type); | 
|  | 394 | if (status) { | 
|  | 395 | printk("coda: failed to register filesystem!\n"); | 
|  | 396 | goto out; | 
|  | 397 | } | 
|  | 398 | return 0; | 
|  | 399 | out: | 
| Greg Kroah-Hartman | 8ab5e4c | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 400 | for (i = 0; i < MAX_CODADEVS; i++) | 
| Kay Sievers | 62ca879 | 2007-09-25 02:03:03 +0200 | [diff] [blame] | 401 | device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i)); | 
| gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 402 | class_destroy(coda_psdev_class); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); | 
|  | 404 | coda_sysctl_clean(); | 
|  | 405 | out1: | 
|  | 406 | coda_destroy_inodecache(); | 
|  | 407 | out2: | 
|  | 408 | return status; | 
|  | 409 | } | 
|  | 410 |  | 
|  | 411 | static void __exit exit_coda(void) | 
|  | 412 | { | 
|  | 413 | int err, i; | 
|  | 414 |  | 
|  | 415 | err = unregister_filesystem(&coda_fs_type); | 
|  | 416 | if ( err != 0 ) { | 
|  | 417 | printk("coda: failed to unregister filesystem\n"); | 
|  | 418 | } | 
| Greg Kroah-Hartman | 8ab5e4c | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 419 | for (i = 0; i < MAX_CODADEVS; i++) | 
| Kay Sievers | 62ca879 | 2007-09-25 02:03:03 +0200 | [diff] [blame] | 420 | device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i)); | 
| gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 421 | class_destroy(coda_psdev_class); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); | 
|  | 423 | coda_sysctl_clean(); | 
|  | 424 | coda_destroy_inodecache(); | 
|  | 425 | } | 
|  | 426 |  | 
|  | 427 | module_init(init_coda); | 
|  | 428 | module_exit(exit_coda); | 
|  | 429 |  |