]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/9p/vfs_file.c
Merge remote-tracking branch 'v9fs/for-next'
[karo-tx-linux.git] / fs / 9p / vfs_file.c
1 /*
2  *  linux/fs/9p/vfs_file.c
3  *
4  * This file contians vfs file ops for 9P2000.
5  *
6  *  Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7  *  Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License version 2
11  *  as published by the Free Software Foundation.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to:
20  *  Free Software Foundation
21  *  51 Franklin Street, Fifth Floor
22  *  Boston, MA  02111-1301  USA
23  *
24  */
25
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/sched.h>
30 #include <linux/file.h>
31 #include <linux/stat.h>
32 #include <linux/string.h>
33 #include <linux/inet.h>
34 #include <linux/list.h>
35 #include <linux/pagemap.h>
36 #include <linux/utsname.h>
37 #include <asm/uaccess.h>
38 #include <linux/idr.h>
39 #include <net/9p/9p.h>
40 #include <net/9p/client.h>
41
42 #include "v9fs.h"
43 #include "v9fs_vfs.h"
44 #include "fid.h"
45 #include "cache.h"
46
47 static const struct vm_operations_struct v9fs_file_vm_ops;
48
49 /**
50  * v9fs_file_open - open a file (or directory)
51  * @inode: inode to be opened
52  * @file: file being opened
53  *
54  */
55
56 int v9fs_file_open(struct inode *inode, struct file *file)
57 {
58         int err;
59         struct v9fs_inode *v9inode;
60         struct v9fs_session_info *v9ses;
61         struct p9_fid *fid;
62         int omode;
63
64         p9_debug(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, file);
65         v9inode = V9FS_I(inode);
66         v9ses = v9fs_inode2v9ses(inode);
67         if (v9fs_proto_dotl(v9ses))
68                 omode = v9fs_open_to_dotl_flags(file->f_flags);
69         else
70                 omode = v9fs_uflags2omode(file->f_flags,
71                                         v9fs_proto_dotu(v9ses));
72         fid = file->private_data;
73         if (!fid) {
74                 fid = v9fs_fid_clone(file->f_path.dentry);
75                 if (IS_ERR(fid))
76                         return PTR_ERR(fid);
77
78                 err = p9_client_open(fid, omode);
79                 if (err < 0) {
80                         p9_client_clunk(fid);
81                         return err;
82                 }
83                 if ((file->f_flags & O_APPEND) &&
84                         (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)))
85                         generic_file_llseek(file, 0, SEEK_END);
86         }
87
88         file->private_data = fid;
89         mutex_lock(&v9inode->v_mutex);
90         if (v9ses->cache && !v9inode->writeback_fid &&
91             ((file->f_flags & O_ACCMODE) != O_RDONLY)) {
92                 /*
93                  * clone a fid and add it to writeback_fid
94                  * we do it during open time instead of
95                  * page dirty time via write_begin/page_mkwrite
96                  * because we want write after unlink usecase
97                  * to work.
98                  */
99                 fid = v9fs_writeback_fid(file->f_path.dentry);
100                 if (IS_ERR(fid)) {
101                         err = PTR_ERR(fid);
102                         mutex_unlock(&v9inode->v_mutex);
103                         goto out_error;
104                 }
105                 v9inode->writeback_fid = (void *) fid;
106         }
107         mutex_unlock(&v9inode->v_mutex);
108 #ifdef CONFIG_9P_FSCACHE
109         if (v9ses->cache)
110                 v9fs_cache_inode_set_cookie(inode, file);
111 #endif
112         return 0;
113 out_error:
114         p9_client_clunk(file->private_data);
115         file->private_data = NULL;
116         return err;
117 }
118
119 /**
120  * v9fs_file_lock - lock a file (or directory)
121  * @filp: file to be locked
122  * @cmd: lock command
123  * @fl: file lock structure
124  *
125  * Bugs: this looks like a local only lock, we should extend into 9P
126  *       by using open exclusive
127  */
128
129 static int v9fs_file_lock(struct file *filp, int cmd, struct file_lock *fl)
130 {
131         int res = 0;
132         struct inode *inode = file_inode(filp);
133
134         p9_debug(P9_DEBUG_VFS, "filp: %p lock: %p\n", filp, fl);
135
136         /* No mandatory locks */
137         if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
138                 return -ENOLCK;
139
140         if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
141                 filemap_write_and_wait(inode->i_mapping);
142                 invalidate_mapping_pages(&inode->i_data, 0, -1);
143         }
144
145         return res;
146 }
147
148 static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
149 {
150         struct p9_flock flock;
151         struct p9_fid *fid;
152         uint8_t status;
153         int res = 0;
154         unsigned char fl_type;
155
156         fid = filp->private_data;
157         BUG_ON(fid == NULL);
158
159         if ((fl->fl_flags & FL_POSIX) != FL_POSIX)
160                 BUG();
161
162         res = posix_lock_file_wait(filp, fl);
163         if (res < 0)
164                 goto out;
165
166         /* convert posix lock to p9 tlock args */
167         memset(&flock, 0, sizeof(flock));
168         /* map the lock type */
169         switch (fl->fl_type) {
170         case F_RDLCK:
171                 flock.type = P9_LOCK_TYPE_RDLCK;
172                 break;
173         case F_WRLCK:
174                 flock.type = P9_LOCK_TYPE_WRLCK;
175                 break;
176         case F_UNLCK:
177                 flock.type = P9_LOCK_TYPE_UNLCK;
178                 break;
179         }
180         flock.start = fl->fl_start;
181         if (fl->fl_end == OFFSET_MAX)
182                 flock.length = 0;
183         else
184                 flock.length = fl->fl_end - fl->fl_start + 1;
185         flock.proc_id = fl->fl_pid;
186         flock.client_id = fid->clnt->name;
187         if (IS_SETLKW(cmd))
188                 flock.flags = P9_LOCK_FLAGS_BLOCK;
189
190         /*
191          * if its a blocked request and we get P9_LOCK_BLOCKED as the status
192          * for lock request, keep on trying
193          */
194         for (;;) {
195                 res = p9_client_lock_dotl(fid, &flock, &status);
196                 if (res < 0)
197                         break;
198
199                 if (status != P9_LOCK_BLOCKED)
200                         break;
201                 if (status == P9_LOCK_BLOCKED && !IS_SETLKW(cmd))
202                         break;
203                 if (schedule_timeout_interruptible(P9_LOCK_TIMEOUT) != 0)
204                         break;
205         }
206
207         /* map 9p status to VFS status */
208         switch (status) {
209         case P9_LOCK_SUCCESS:
210                 res = 0;
211                 break;
212         case P9_LOCK_BLOCKED:
213                 res = -EAGAIN;
214                 break;
215         case P9_LOCK_ERROR:
216         case P9_LOCK_GRACE:
217                 res = -ENOLCK;
218                 break;
219         default:
220                 BUG();
221         }
222
223         /*
224          * incase server returned error for lock request, revert
225          * it locally
226          */
227         if (res < 0 && fl->fl_type != F_UNLCK) {
228                 fl_type = fl->fl_type;
229                 fl->fl_type = F_UNLCK;
230                 res = posix_lock_file_wait(filp, fl);
231                 fl->fl_type = fl_type;
232         }
233 out:
234         return res;
235 }
236
237 static int v9fs_file_getlock(struct file *filp, struct file_lock *fl)
238 {
239         struct p9_getlock glock;
240         struct p9_fid *fid;
241         int res = 0;
242
243         fid = filp->private_data;
244         BUG_ON(fid == NULL);
245
246         posix_test_lock(filp, fl);
247         /*
248          * if we have a conflicting lock locally, no need to validate
249          * with server
250          */
251         if (fl->fl_type != F_UNLCK)
252                 return res;
253
254         /* convert posix lock to p9 tgetlock args */
255         memset(&glock, 0, sizeof(glock));
256         glock.type  = P9_LOCK_TYPE_UNLCK;
257         glock.start = fl->fl_start;
258         if (fl->fl_end == OFFSET_MAX)
259                 glock.length = 0;
260         else
261                 glock.length = fl->fl_end - fl->fl_start + 1;
262         glock.proc_id = fl->fl_pid;
263         glock.client_id = fid->clnt->name;
264
265         res = p9_client_getlock_dotl(fid, &glock);
266         if (res < 0)
267                 return res;
268         /* map 9p lock type to os lock type */
269         switch (glock.type) {
270         case P9_LOCK_TYPE_RDLCK:
271                 fl->fl_type = F_RDLCK;
272                 break;
273         case P9_LOCK_TYPE_WRLCK:
274                 fl->fl_type = F_WRLCK;
275                 break;
276         case P9_LOCK_TYPE_UNLCK:
277                 fl->fl_type = F_UNLCK;
278                 break;
279         }
280         if (glock.type != P9_LOCK_TYPE_UNLCK) {
281                 fl->fl_start = glock.start;
282                 if (glock.length == 0)
283                         fl->fl_end = OFFSET_MAX;
284                 else
285                         fl->fl_end = glock.start + glock.length - 1;
286                 fl->fl_pid = glock.proc_id;
287         }
288         return res;
289 }
290
291 /**
292  * v9fs_file_lock_dotl - lock a file (or directory)
293  * @filp: file to be locked
294  * @cmd: lock command
295  * @fl: file lock structure
296  *
297  */
298
299 static int v9fs_file_lock_dotl(struct file *filp, int cmd, struct file_lock *fl)
300 {
301         struct inode *inode = file_inode(filp);
302         int ret = -ENOLCK;
303
304         p9_debug(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n",
305                  filp, cmd, fl, filp->f_path.dentry->d_name.name);
306
307         /* No mandatory locks */
308         if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
309                 goto out_err;
310
311         if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
312                 filemap_write_and_wait(inode->i_mapping);
313                 invalidate_mapping_pages(&inode->i_data, 0, -1);
314         }
315
316         if (IS_SETLK(cmd) || IS_SETLKW(cmd))
317                 ret = v9fs_file_do_lock(filp, cmd, fl);
318         else if (IS_GETLK(cmd))
319                 ret = v9fs_file_getlock(filp, fl);
320         else
321                 ret = -EINVAL;
322 out_err:
323         return ret;
324 }
325
326 /**
327  * v9fs_file_flock_dotl - lock a file
328  * @filp: file to be locked
329  * @cmd: lock command
330  * @fl: file lock structure
331  *
332  */
333
334 static int v9fs_file_flock_dotl(struct file *filp, int cmd,
335         struct file_lock *fl)
336 {
337         struct inode *inode = file_inode(filp);
338         int ret = -ENOLCK;
339
340         p9_debug(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n",
341                  filp, cmd, fl, filp->f_path.dentry->d_name.name);
342
343         /* No mandatory locks */
344         if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
345                 goto out_err;
346
347         if (!(fl->fl_flags & FL_FLOCK))
348                 goto out_err;
349
350         if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
351                 filemap_write_and_wait(inode->i_mapping);
352                 invalidate_mapping_pages(&inode->i_data, 0, -1);
353         }
354         /* Convert flock to posix lock */
355         fl->fl_owner = (fl_owner_t)filp;
356         fl->fl_start = 0;
357         fl->fl_end = OFFSET_MAX;
358         fl->fl_flags |= FL_POSIX;
359         fl->fl_flags ^= FL_FLOCK;
360
361         if (IS_SETLK(cmd) | IS_SETLKW(cmd))
362                 ret = v9fs_file_do_lock(filp, cmd, fl);
363         else
364                 ret = -EINVAL;
365 out_err:
366         return ret;
367 }
368
369 /**
370  * v9fs_fid_readn - read from a fid
371  * @fid: fid to read
372  * @data: data buffer to read data into
373  * @udata: user data buffer to read data into
374  * @count: size of buffer
375  * @offset: offset at which to read data
376  *
377  */
378 ssize_t
379 v9fs_fid_readn(struct p9_fid *fid, char *data, char __user *udata, u32 count,
380                u64 offset)
381 {
382         int n, total, size;
383
384         p9_debug(P9_DEBUG_VFS, "fid %d offset %llu count %d\n",
385                  fid->fid, (long long unsigned)offset, count);
386         n = 0;
387         total = 0;
388         size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
389         do {
390                 n = p9_client_read(fid, data, udata, offset, count);
391                 if (n <= 0)
392                         break;
393
394                 if (data)
395                         data += n;
396                 if (udata)
397                         udata += n;
398
399                 offset += n;
400                 count -= n;
401                 total += n;
402         } while (count > 0 && n == size);
403
404         if (n < 0)
405                 total = n;
406
407         return total;
408 }
409
410 /**
411  * v9fs_file_readn - read from a file
412  * @filp: file pointer to read
413  * @data: data buffer to read data into
414  * @udata: user data buffer to read data into
415  * @count: size of buffer
416  * @offset: offset at which to read data
417  *
418  */
419 ssize_t
420 v9fs_file_readn(struct file *filp, char *data, char __user *udata, u32 count,
421                u64 offset)
422 {
423         return v9fs_fid_readn(filp->private_data, data, udata, count, offset);
424 }
425
426 /**
427  * v9fs_file_read - read from a file
428  * @filp: file pointer to read
429  * @udata: user data buffer to read data into
430  * @count: size of buffer
431  * @offset: offset at which to read data
432  *
433  */
434
435 static ssize_t
436 v9fs_file_read(struct file *filp, char __user *udata, size_t count,
437                loff_t * offset)
438 {
439         int ret;
440         struct p9_fid *fid;
441         size_t size;
442
443         p9_debug(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset);
444         fid = filp->private_data;
445
446         size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
447         if (count > size)
448                 ret = v9fs_file_readn(filp, NULL, udata, count, *offset);
449         else
450                 ret = p9_client_read(fid, NULL, udata, *offset, count);
451
452         if (ret > 0)
453                 *offset += ret;
454
455         return ret;
456 }
457
458 ssize_t
459 v9fs_file_write_internal(struct inode *inode, struct p9_fid *fid,
460                          const char __user *data, size_t count,
461                          loff_t *offset, int invalidate)
462 {
463         int n;
464         loff_t i_size;
465         size_t total = 0;
466         loff_t origin = *offset;
467         unsigned long pg_start, pg_end;
468
469         p9_debug(P9_DEBUG_VFS, "data %p count %d offset %x\n",
470                  data, (int)count, (int)*offset);
471
472         do {
473                 n = p9_client_write(fid, NULL, data+total, origin+total, count);
474                 if (n <= 0)
475                         break;
476                 count -= n;
477                 total += n;
478         } while (count > 0);
479
480         if (invalidate && (total > 0)) {
481                 pg_start = origin >> PAGE_CACHE_SHIFT;
482                 pg_end = (origin + total - 1) >> PAGE_CACHE_SHIFT;
483                 if (inode->i_mapping && inode->i_mapping->nrpages)
484                         invalidate_inode_pages2_range(inode->i_mapping,
485                                                       pg_start, pg_end);
486                 *offset += total;
487                 i_size = i_size_read(inode);
488                 if (*offset > i_size) {
489                         inode_add_bytes(inode, *offset - i_size);
490                         i_size_write(inode, *offset);
491                 }
492         }
493         if (n < 0)
494                 return n;
495
496         return total;
497 }
498
499 /**
500  * v9fs_file_write - write to a file
501  * @filp: file pointer to write
502  * @data: data buffer to write data from
503  * @count: size of buffer
504  * @offset: offset at which to write data
505  *
506  */
507 static ssize_t
508 v9fs_file_write(struct file *filp, const char __user * data,
509                 size_t count, loff_t *offset)
510 {
511         ssize_t retval = 0;
512         loff_t origin = *offset;
513
514
515         retval = generic_write_checks(filp, &origin, &count, 0);
516         if (retval)
517                 goto out;
518
519         retval = -EINVAL;
520         if ((ssize_t) count < 0)
521                 goto out;
522         retval = 0;
523         if (!count)
524                 goto out;
525
526         retval = v9fs_file_write_internal(file_inode(filp),
527                                         filp->private_data,
528                                         data, count, &origin, 1);
529         /* update offset on successful write */
530         if (retval > 0)
531                 *offset = origin;
532 out:
533         return retval;
534 }
535
536
537 static int v9fs_file_fsync(struct file *filp, loff_t start, loff_t end,
538                            int datasync)
539 {
540         struct p9_fid *fid;
541         struct inode *inode = filp->f_mapping->host;
542         struct p9_wstat wstat;
543         int retval;
544
545         retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
546         if (retval)
547                 return retval;
548
549         mutex_lock(&inode->i_mutex);
550         p9_debug(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
551
552         fid = filp->private_data;
553         v9fs_blank_wstat(&wstat);
554
555         retval = p9_client_wstat(fid, &wstat);
556         mutex_unlock(&inode->i_mutex);
557
558         return retval;
559 }
560
561 int v9fs_file_fsync_dotl(struct file *filp, loff_t start, loff_t end,
562                          int datasync)
563 {
564         struct p9_fid *fid;
565         struct inode *inode = filp->f_mapping->host;
566         int retval;
567
568         retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
569         if (retval)
570                 return retval;
571
572         mutex_lock(&inode->i_mutex);
573         p9_debug(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
574
575         fid = filp->private_data;
576
577         retval = p9_client_fsync(fid, datasync);
578         mutex_unlock(&inode->i_mutex);
579
580         return retval;
581 }
582
583 static int
584 v9fs_file_mmap(struct file *file, struct vm_area_struct *vma)
585 {
586         int retval;
587
588         retval = generic_file_mmap(file, vma);
589         if (!retval)
590                 vma->vm_ops = &v9fs_file_vm_ops;
591
592         return retval;
593 }
594
595 static int
596 v9fs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
597 {
598         struct v9fs_inode *v9inode;
599         struct page *page = vmf->page;
600         struct file *filp = vma->vm_file;
601         struct inode *inode = file_inode(filp);
602
603
604         p9_debug(P9_DEBUG_VFS, "page %p fid %lx\n",
605                  page, (unsigned long)filp->private_data);
606
607         /* Update file times before taking page lock */
608         file_update_time(filp);
609
610         v9inode = V9FS_I(inode);
611         /* make sure the cache has finished storing the page */
612         v9fs_fscache_wait_on_page_write(inode, page);
613         BUG_ON(!v9inode->writeback_fid);
614         lock_page(page);
615         if (page->mapping != inode->i_mapping)
616                 goto out_unlock;
617         wait_for_stable_page(page);
618
619         return VM_FAULT_LOCKED;
620 out_unlock:
621         unlock_page(page);
622         return VM_FAULT_NOPAGE;
623 }
624
625 static ssize_t
626 v9fs_direct_read(struct file *filp, char __user *udata, size_t count,
627                  loff_t *offsetp)
628 {
629         loff_t size, offset;
630         struct inode *inode;
631         struct address_space *mapping;
632
633         offset = *offsetp;
634         mapping = filp->f_mapping;
635         inode = mapping->host;
636         if (!count)
637                 return 0;
638         size = i_size_read(inode);
639         if (offset < size)
640                 filemap_write_and_wait_range(mapping, offset,
641                                              offset + count - 1);
642
643         return v9fs_file_read(filp, udata, count, offsetp);
644 }
645
646 /**
647  * v9fs_cached_file_read - read from a file
648  * @filp: file pointer to read
649  * @udata: user data buffer to read data into
650  * @count: size of buffer
651  * @offset: offset at which to read data
652  *
653  */
654 static ssize_t
655 v9fs_cached_file_read(struct file *filp, char __user *data, size_t count,
656                       loff_t *offset)
657 {
658         if (filp->f_flags & O_DIRECT)
659                 return v9fs_direct_read(filp, data, count, offset);
660         return do_sync_read(filp, data, count, offset);
661 }
662
663 static ssize_t
664 v9fs_direct_write(struct file *filp, const char __user * data,
665                   size_t count, loff_t *offsetp)
666 {
667         loff_t offset;
668         ssize_t retval;
669         struct inode *inode;
670         struct address_space *mapping;
671
672         offset = *offsetp;
673         mapping = filp->f_mapping;
674         inode = mapping->host;
675         if (!count)
676                 return 0;
677
678         mutex_lock(&inode->i_mutex);
679         retval = filemap_write_and_wait_range(mapping, offset,
680                                               offset + count - 1);
681         if (retval)
682                 goto err_out;
683         /*
684          * After a write we want buffered reads to be sure to go to disk to get
685          * the new data.  We invalidate clean cached page from the region we're
686          * about to write.  We do this *before* the write so that if we fail
687          * here we fall back to buffered write
688          */
689         if (mapping->nrpages) {
690                 pgoff_t pg_start = offset >> PAGE_CACHE_SHIFT;
691                 pgoff_t pg_end   = (offset + count - 1) >> PAGE_CACHE_SHIFT;
692
693                 retval = invalidate_inode_pages2_range(mapping,
694                                                         pg_start, pg_end);
695                 /*
696                  * If a page can not be invalidated, fall back
697                  * to buffered write.
698                  */
699                 if (retval) {
700                         if (retval == -EBUSY)
701                                 goto buff_write;
702                         goto err_out;
703                 }
704         }
705         retval = v9fs_file_write(filp, data, count, offsetp);
706 err_out:
707         mutex_unlock(&inode->i_mutex);
708         return retval;
709
710 buff_write:
711         mutex_unlock(&inode->i_mutex);
712         return do_sync_write(filp, data, count, offsetp);
713 }
714
715 /**
716  * v9fs_cached_file_write - write to a file
717  * @filp: file pointer to write
718  * @data: data buffer to write data from
719  * @count: size of buffer
720  * @offset: offset at which to write data
721  *
722  */
723 static ssize_t
724 v9fs_cached_file_write(struct file *filp, const char __user * data,
725                        size_t count, loff_t *offset)
726 {
727
728         if (filp->f_flags & O_DIRECT)
729                 return v9fs_direct_write(filp, data, count, offset);
730         return do_sync_write(filp, data, count, offset);
731 }
732
733 static const struct vm_operations_struct v9fs_file_vm_ops = {
734         .fault = filemap_fault,
735         .page_mkwrite = v9fs_vm_page_mkwrite,
736         .remap_pages = generic_file_remap_pages,
737 };
738
739
740 const struct file_operations v9fs_cached_file_operations = {
741         .llseek = generic_file_llseek,
742         .read = v9fs_cached_file_read,
743         .write = v9fs_cached_file_write,
744         .read_iter = generic_file_read_iter,
745         .write_iter = generic_file_write_iter,
746         .open = v9fs_file_open,
747         .release = v9fs_dir_release,
748         .lock = v9fs_file_lock,
749         .mmap = v9fs_file_mmap,
750         .fsync = v9fs_file_fsync,
751 };
752
753 const struct file_operations v9fs_cached_file_operations_dotl = {
754         .llseek = generic_file_llseek,
755         .read = v9fs_cached_file_read,
756         .write = v9fs_cached_file_write,
757         .read_iter = generic_file_read_iter,
758         .write_iter = generic_file_write_iter,
759         .open = v9fs_file_open,
760         .release = v9fs_dir_release,
761         .lock = v9fs_file_lock_dotl,
762         .flock = v9fs_file_flock_dotl,
763         .mmap = v9fs_file_mmap,
764         .fsync = v9fs_file_fsync_dotl,
765 };
766
767 const struct file_operations v9fs_file_operations = {
768         .llseek = generic_file_llseek,
769         .read = v9fs_file_read,
770         .write = v9fs_file_write,
771         .open = v9fs_file_open,
772         .release = v9fs_dir_release,
773         .lock = v9fs_file_lock,
774         .mmap = generic_file_readonly_mmap,
775         .fsync = v9fs_file_fsync,
776 };
777
778 const struct file_operations v9fs_file_operations_dotl = {
779         .llseek = generic_file_llseek,
780         .read = v9fs_file_read,
781         .write = v9fs_file_write,
782         .open = v9fs_file_open,
783         .release = v9fs_dir_release,
784         .lock = v9fs_file_lock_dotl,
785         .flock = v9fs_file_flock_dotl,
786         .mmap = generic_file_readonly_mmap,
787         .fsync = v9fs_file_fsync_dotl,
788 };