]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/nfs/file.c | |
3 | * | |
4 | * Copyright (C) 1992 Rick Sladkey | |
5 | * | |
6 | * Changes Copyright (C) 1994 by Florian La Roche | |
7 | * - Do not copy data too often around in the kernel. | |
8 | * - In nfs_file_read the return value of kmalloc wasn't checked. | |
9 | * - Put in a better version of read look-ahead buffering. Original idea | |
10 | * and implementation by Wai S Kok [email protected]. | |
11 | * | |
12 | * Expire cache on write to a file by Wai S Kok (Oct 1994). | |
13 | * | |
14 | * Total rewrite of read side for new NFS buffer cache.. Linus. | |
15 | * | |
16 | * nfs regular file handling functions | |
17 | */ | |
18 | ||
19 | #include <linux/time.h> | |
20 | #include <linux/kernel.h> | |
21 | #include <linux/errno.h> | |
22 | #include <linux/fcntl.h> | |
23 | #include <linux/stat.h> | |
24 | #include <linux/nfs_fs.h> | |
25 | #include <linux/nfs_mount.h> | |
26 | #include <linux/mm.h> | |
27 | #include <linux/slab.h> | |
28 | #include <linux/pagemap.h> | |
29 | #include <linux/smp_lock.h> | |
30 | ||
31 | #include <asm/uaccess.h> | |
32 | #include <asm/system.h> | |
33 | ||
34 | #include "delegation.h" | |
35 | ||
36 | #define NFSDBG_FACILITY NFSDBG_FILE | |
37 | ||
38 | static int nfs_file_open(struct inode *, struct file *); | |
39 | static int nfs_file_release(struct inode *, struct file *); | |
980802e3 | 40 | static loff_t nfs_file_llseek(struct file *file, loff_t offset, int origin); |
1da177e4 LT |
41 | static int nfs_file_mmap(struct file *, struct vm_area_struct *); |
42 | static ssize_t nfs_file_sendfile(struct file *, loff_t *, size_t, read_actor_t, void *); | |
43 | static ssize_t nfs_file_read(struct kiocb *, char __user *, size_t, loff_t); | |
44 | static ssize_t nfs_file_write(struct kiocb *, const char __user *, size_t, loff_t); | |
45 | static int nfs_file_flush(struct file *); | |
46 | static int nfs_fsync(struct file *, struct dentry *dentry, int datasync); | |
47 | static int nfs_check_flags(int flags); | |
48 | static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl); | |
49 | static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl); | |
50 | ||
51 | struct file_operations nfs_file_operations = { | |
980802e3 | 52 | .llseek = nfs_file_llseek, |
1da177e4 LT |
53 | .read = do_sync_read, |
54 | .write = do_sync_write, | |
55 | .aio_read = nfs_file_read, | |
56 | .aio_write = nfs_file_write, | |
57 | .mmap = nfs_file_mmap, | |
58 | .open = nfs_file_open, | |
59 | .flush = nfs_file_flush, | |
60 | .release = nfs_file_release, | |
61 | .fsync = nfs_fsync, | |
62 | .lock = nfs_lock, | |
63 | .flock = nfs_flock, | |
64 | .sendfile = nfs_file_sendfile, | |
65 | .check_flags = nfs_check_flags, | |
66 | }; | |
67 | ||
68 | struct inode_operations nfs_file_inode_operations = { | |
69 | .permission = nfs_permission, | |
70 | .getattr = nfs_getattr, | |
71 | .setattr = nfs_setattr, | |
72 | }; | |
73 | ||
b7fa0554 AG |
74 | #ifdef CONFIG_NFS_V3 |
75 | struct inode_operations nfs3_file_inode_operations = { | |
76 | .permission = nfs_permission, | |
77 | .getattr = nfs_getattr, | |
78 | .setattr = nfs_setattr, | |
79 | .listxattr = nfs3_listxattr, | |
80 | .getxattr = nfs3_getxattr, | |
81 | .setxattr = nfs3_setxattr, | |
82 | .removexattr = nfs3_removexattr, | |
83 | }; | |
84 | #endif /* CONFIG_NFS_v3 */ | |
85 | ||
1da177e4 LT |
86 | /* Hack for future NFS swap support */ |
87 | #ifndef IS_SWAPFILE | |
88 | # define IS_SWAPFILE(inode) (0) | |
89 | #endif | |
90 | ||
91 | static int nfs_check_flags(int flags) | |
92 | { | |
93 | if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT)) | |
94 | return -EINVAL; | |
95 | ||
96 | return 0; | |
97 | } | |
98 | ||
99 | /* | |
100 | * Open file | |
101 | */ | |
102 | static int | |
103 | nfs_file_open(struct inode *inode, struct file *filp) | |
104 | { | |
105 | struct nfs_server *server = NFS_SERVER(inode); | |
106 | int (*open)(struct inode *, struct file *); | |
107 | int res; | |
108 | ||
109 | res = nfs_check_flags(filp->f_flags); | |
110 | if (res) | |
111 | return res; | |
112 | ||
113 | lock_kernel(); | |
114 | /* Do NFSv4 open() call */ | |
115 | if ((open = server->rpc_ops->file_open) != NULL) | |
116 | res = open(inode, filp); | |
117 | unlock_kernel(); | |
118 | return res; | |
119 | } | |
120 | ||
121 | static int | |
122 | nfs_file_release(struct inode *inode, struct file *filp) | |
123 | { | |
124 | /* Ensure that dirty pages are flushed out with the right creds */ | |
125 | if (filp->f_mode & FMODE_WRITE) | |
126 | filemap_fdatawrite(filp->f_mapping); | |
127 | return NFS_PROTO(inode)->file_release(inode, filp); | |
128 | } | |
129 | ||
fe51beec TM |
130 | /** |
131 | * nfs_revalidate_file - Revalidate the page cache & related metadata | |
132 | * @inode - pointer to inode struct | |
133 | * @file - pointer to file | |
134 | */ | |
135 | static int nfs_revalidate_file(struct inode *inode, struct file *filp) | |
136 | { | |
55296809 | 137 | struct nfs_inode *nfsi = NFS_I(inode); |
fe51beec TM |
138 | int retval = 0; |
139 | ||
b3c52da3 TM |
140 | if ((nfsi->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_ATTR)) |
141 | || nfs_attribute_timeout(inode)) | |
fe51beec TM |
142 | retval = __nfs_revalidate_inode(NFS_SERVER(inode), inode); |
143 | nfs_revalidate_mapping(inode, filp->f_mapping); | |
144 | return 0; | |
145 | } | |
146 | ||
980802e3 TM |
147 | /** |
148 | * nfs_revalidate_size - Revalidate the file size | |
149 | * @inode - pointer to inode struct | |
150 | * @file - pointer to struct file | |
151 | * | |
152 | * Revalidates the file length. This is basically a wrapper around | |
153 | * nfs_revalidate_inode() that takes into account the fact that we may | |
154 | * have cached writes (in which case we don't care about the server's | |
155 | * idea of what the file length is), or O_DIRECT (in which case we | |
156 | * shouldn't trust the cache). | |
157 | */ | |
158 | static int nfs_revalidate_file_size(struct inode *inode, struct file *filp) | |
159 | { | |
160 | struct nfs_server *server = NFS_SERVER(inode); | |
161 | struct nfs_inode *nfsi = NFS_I(inode); | |
162 | ||
163 | if (server->flags & NFS_MOUNT_NOAC) | |
164 | goto force_reval; | |
165 | if (filp->f_flags & O_DIRECT) | |
166 | goto force_reval; | |
167 | if (nfsi->npages != 0) | |
168 | return 0; | |
55296809 | 169 | if (!(nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) && !nfs_attribute_timeout(inode)) |
fe51beec | 170 | return 0; |
980802e3 TM |
171 | force_reval: |
172 | return __nfs_revalidate_inode(server, inode); | |
173 | } | |
174 | ||
175 | static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin) | |
176 | { | |
177 | /* origin == SEEK_END => we must revalidate the cached file length */ | |
178 | if (origin == 2) { | |
179 | struct inode *inode = filp->f_mapping->host; | |
180 | int retval = nfs_revalidate_file_size(inode, filp); | |
181 | if (retval < 0) | |
182 | return (loff_t)retval; | |
183 | } | |
184 | return remote_llseek(filp, offset, origin); | |
185 | } | |
186 | ||
1da177e4 LT |
187 | /* |
188 | * Flush all dirty pages, and check for write errors. | |
189 | * | |
190 | */ | |
191 | static int | |
192 | nfs_file_flush(struct file *file) | |
193 | { | |
194 | struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data; | |
195 | struct inode *inode = file->f_dentry->d_inode; | |
196 | int status; | |
197 | ||
198 | dfprintk(VFS, "nfs: flush(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino); | |
199 | ||
200 | if ((file->f_mode & FMODE_WRITE) == 0) | |
201 | return 0; | |
202 | lock_kernel(); | |
203 | /* Ensure that data+attribute caches are up to date after close() */ | |
204 | status = nfs_wb_all(inode); | |
205 | if (!status) { | |
206 | status = ctx->error; | |
207 | ctx->error = 0; | |
3338c143 TM |
208 | if (!status) |
209 | nfs_revalidate_inode(NFS_SERVER(inode), inode); | |
1da177e4 LT |
210 | } |
211 | unlock_kernel(); | |
212 | return status; | |
213 | } | |
214 | ||
215 | static ssize_t | |
216 | nfs_file_read(struct kiocb *iocb, char __user * buf, size_t count, loff_t pos) | |
217 | { | |
218 | struct dentry * dentry = iocb->ki_filp->f_dentry; | |
219 | struct inode * inode = dentry->d_inode; | |
220 | ssize_t result; | |
221 | ||
222 | #ifdef CONFIG_NFS_DIRECTIO | |
223 | if (iocb->ki_filp->f_flags & O_DIRECT) | |
224 | return nfs_file_direct_read(iocb, buf, count, pos); | |
225 | #endif | |
226 | ||
227 | dfprintk(VFS, "nfs: read(%s/%s, %lu@%lu)\n", | |
228 | dentry->d_parent->d_name.name, dentry->d_name.name, | |
229 | (unsigned long) count, (unsigned long) pos); | |
230 | ||
fe51beec | 231 | result = nfs_revalidate_file(inode, iocb->ki_filp); |
1da177e4 LT |
232 | if (!result) |
233 | result = generic_file_aio_read(iocb, buf, count, pos); | |
234 | return result; | |
235 | } | |
236 | ||
237 | static ssize_t | |
238 | nfs_file_sendfile(struct file *filp, loff_t *ppos, size_t count, | |
239 | read_actor_t actor, void *target) | |
240 | { | |
241 | struct dentry *dentry = filp->f_dentry; | |
242 | struct inode *inode = dentry->d_inode; | |
243 | ssize_t res; | |
244 | ||
245 | dfprintk(VFS, "nfs: sendfile(%s/%s, %lu@%Lu)\n", | |
246 | dentry->d_parent->d_name.name, dentry->d_name.name, | |
247 | (unsigned long) count, (unsigned long long) *ppos); | |
248 | ||
fe51beec | 249 | res = nfs_revalidate_file(inode, filp); |
1da177e4 LT |
250 | if (!res) |
251 | res = generic_file_sendfile(filp, ppos, count, actor, target); | |
252 | return res; | |
253 | } | |
254 | ||
255 | static int | |
256 | nfs_file_mmap(struct file * file, struct vm_area_struct * vma) | |
257 | { | |
258 | struct dentry *dentry = file->f_dentry; | |
259 | struct inode *inode = dentry->d_inode; | |
260 | int status; | |
261 | ||
262 | dfprintk(VFS, "nfs: mmap(%s/%s)\n", | |
263 | dentry->d_parent->d_name.name, dentry->d_name.name); | |
264 | ||
fe51beec | 265 | status = nfs_revalidate_file(inode, file); |
1da177e4 LT |
266 | if (!status) |
267 | status = generic_file_mmap(file, vma); | |
268 | return status; | |
269 | } | |
270 | ||
271 | /* | |
272 | * Flush any dirty pages for this process, and check for write errors. | |
273 | * The return status from this call provides a reliable indication of | |
274 | * whether any write errors occurred for this process. | |
275 | */ | |
276 | static int | |
277 | nfs_fsync(struct file *file, struct dentry *dentry, int datasync) | |
278 | { | |
279 | struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data; | |
280 | struct inode *inode = dentry->d_inode; | |
281 | int status; | |
282 | ||
283 | dfprintk(VFS, "nfs: fsync(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino); | |
284 | ||
285 | lock_kernel(); | |
286 | status = nfs_wb_all(inode); | |
287 | if (!status) { | |
288 | status = ctx->error; | |
289 | ctx->error = 0; | |
290 | } | |
291 | unlock_kernel(); | |
292 | return status; | |
293 | } | |
294 | ||
295 | /* | |
296 | * This does the "real" work of the write. The generic routine has | |
297 | * allocated the page, locked it, done all the page alignment stuff | |
298 | * calculations etc. Now we should just copy the data from user | |
299 | * space and write it back to the real medium.. | |
300 | * | |
301 | * If the writer ends up delaying the write, the writer needs to | |
302 | * increment the page use counts until he is done with the page. | |
303 | */ | |
304 | static int nfs_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to) | |
305 | { | |
306 | return nfs_flush_incompatible(file, page); | |
307 | } | |
308 | ||
309 | static int nfs_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to) | |
310 | { | |
311 | long status; | |
312 | ||
313 | lock_kernel(); | |
314 | status = nfs_updatepage(file, page, offset, to-offset); | |
315 | unlock_kernel(); | |
316 | return status; | |
317 | } | |
318 | ||
cd52ed35 TM |
319 | static int nfs_invalidate_page(struct page *page, unsigned long offset) |
320 | { | |
321 | /* FIXME: we really should cancel any unstarted writes on this page */ | |
322 | return 1; | |
323 | } | |
324 | ||
325 | static int nfs_release_page(struct page *page, gfp_t gfp) | |
326 | { | |
327 | return !nfs_wb_page(page->mapping->host, page); | |
328 | } | |
329 | ||
1da177e4 LT |
330 | struct address_space_operations nfs_file_aops = { |
331 | .readpage = nfs_readpage, | |
332 | .readpages = nfs_readpages, | |
333 | .set_page_dirty = __set_page_dirty_nobuffers, | |
334 | .writepage = nfs_writepage, | |
335 | .writepages = nfs_writepages, | |
336 | .prepare_write = nfs_prepare_write, | |
337 | .commit_write = nfs_commit_write, | |
cd52ed35 TM |
338 | .invalidatepage = nfs_invalidate_page, |
339 | .releasepage = nfs_release_page, | |
1da177e4 LT |
340 | #ifdef CONFIG_NFS_DIRECTIO |
341 | .direct_IO = nfs_direct_IO, | |
342 | #endif | |
343 | }; | |
344 | ||
345 | /* | |
346 | * Write to a file (through the page cache). | |
347 | */ | |
348 | static ssize_t | |
349 | nfs_file_write(struct kiocb *iocb, const char __user *buf, size_t count, loff_t pos) | |
350 | { | |
351 | struct dentry * dentry = iocb->ki_filp->f_dentry; | |
352 | struct inode * inode = dentry->d_inode; | |
353 | ssize_t result; | |
354 | ||
355 | #ifdef CONFIG_NFS_DIRECTIO | |
356 | if (iocb->ki_filp->f_flags & O_DIRECT) | |
357 | return nfs_file_direct_write(iocb, buf, count, pos); | |
358 | #endif | |
359 | ||
360 | dfprintk(VFS, "nfs: write(%s/%s(%ld), %lu@%lu)\n", | |
361 | dentry->d_parent->d_name.name, dentry->d_name.name, | |
362 | inode->i_ino, (unsigned long) count, (unsigned long) pos); | |
363 | ||
364 | result = -EBUSY; | |
365 | if (IS_SWAPFILE(inode)) | |
366 | goto out_swapfile; | |
7d52e862 TM |
367 | /* |
368 | * O_APPEND implies that we must revalidate the file length. | |
369 | */ | |
370 | if (iocb->ki_filp->f_flags & O_APPEND) { | |
371 | result = nfs_revalidate_file_size(inode, iocb->ki_filp); | |
372 | if (result) | |
373 | goto out; | |
fe51beec TM |
374 | } |
375 | nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping); | |
1da177e4 LT |
376 | |
377 | result = count; | |
378 | if (!count) | |
379 | goto out; | |
380 | ||
381 | result = generic_file_aio_write(iocb, buf, count, pos); | |
382 | out: | |
383 | return result; | |
384 | ||
385 | out_swapfile: | |
386 | printk(KERN_INFO "NFS: attempt to write to active swap file!\n"); | |
387 | goto out; | |
388 | } | |
389 | ||
390 | static int do_getlk(struct file *filp, int cmd, struct file_lock *fl) | |
391 | { | |
039c4d7a | 392 | struct file_lock *cfl; |
1da177e4 LT |
393 | struct inode *inode = filp->f_mapping->host; |
394 | int status = 0; | |
395 | ||
396 | lock_kernel(); | |
039c4d7a TM |
397 | /* Try local locking first */ |
398 | cfl = posix_test_lock(filp, fl); | |
399 | if (cfl != NULL) { | |
400 | locks_copy_lock(fl, cfl); | |
401 | goto out; | |
1da177e4 | 402 | } |
039c4d7a TM |
403 | |
404 | if (nfs_have_delegation(inode, FMODE_READ)) | |
405 | goto out_noconflict; | |
406 | ||
407 | if (NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM) | |
408 | goto out_noconflict; | |
409 | ||
410 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | |
411 | out: | |
1da177e4 LT |
412 | unlock_kernel(); |
413 | return status; | |
039c4d7a TM |
414 | out_noconflict: |
415 | fl->fl_type = F_UNLCK; | |
416 | goto out; | |
1da177e4 LT |
417 | } |
418 | ||
419 | static int do_vfs_lock(struct file *file, struct file_lock *fl) | |
420 | { | |
421 | int res = 0; | |
422 | switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { | |
423 | case FL_POSIX: | |
424 | res = posix_lock_file_wait(file, fl); | |
425 | break; | |
426 | case FL_FLOCK: | |
427 | res = flock_lock_file_wait(file, fl); | |
428 | break; | |
429 | default: | |
430 | BUG(); | |
431 | } | |
432 | if (res < 0) | |
433 | printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", | |
434 | __FUNCTION__); | |
435 | return res; | |
436 | } | |
437 | ||
438 | static int do_unlk(struct file *filp, int cmd, struct file_lock *fl) | |
439 | { | |
440 | struct inode *inode = filp->f_mapping->host; | |
441 | sigset_t oldset; | |
442 | int status; | |
443 | ||
444 | rpc_clnt_sigmask(NFS_CLIENT(inode), &oldset); | |
445 | /* | |
446 | * Flush all pending writes before doing anything | |
447 | * with locks.. | |
448 | */ | |
29884df0 | 449 | nfs_sync_mapping(filp->f_mapping); |
1da177e4 LT |
450 | |
451 | /* NOTE: special case | |
452 | * If we're signalled while cleaning up locks on process exit, we | |
453 | * still need to complete the unlock. | |
454 | */ | |
455 | lock_kernel(); | |
456 | /* Use local locking if mounted with "-onolock" */ | |
457 | if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) | |
458 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | |
459 | else | |
460 | status = do_vfs_lock(filp, fl); | |
461 | unlock_kernel(); | |
462 | rpc_clnt_sigunmask(NFS_CLIENT(inode), &oldset); | |
463 | return status; | |
464 | } | |
465 | ||
466 | static int do_setlk(struct file *filp, int cmd, struct file_lock *fl) | |
467 | { | |
468 | struct inode *inode = filp->f_mapping->host; | |
469 | sigset_t oldset; | |
470 | int status; | |
471 | ||
472 | rpc_clnt_sigmask(NFS_CLIENT(inode), &oldset); | |
473 | /* | |
474 | * Flush all pending writes before doing anything | |
475 | * with locks.. | |
476 | */ | |
29884df0 TM |
477 | status = nfs_sync_mapping(filp->f_mapping); |
478 | if (status != 0) | |
1da177e4 LT |
479 | goto out; |
480 | ||
481 | lock_kernel(); | |
482 | /* Use local locking if mounted with "-onolock" */ | |
483 | if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) { | |
484 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | |
485 | /* If we were signalled we still need to ensure that | |
486 | * we clean up any state on the server. We therefore | |
487 | * record the lock call as having succeeded in order to | |
488 | * ensure that locks_remove_posix() cleans it out when | |
489 | * the process exits. | |
490 | */ | |
491 | if (status == -EINTR || status == -ERESTARTSYS) | |
492 | do_vfs_lock(filp, fl); | |
493 | } else | |
494 | status = do_vfs_lock(filp, fl); | |
495 | unlock_kernel(); | |
496 | if (status < 0) | |
497 | goto out; | |
498 | /* | |
499 | * Make sure we clear the cache whenever we try to get the lock. | |
500 | * This makes locking act as a cache coherency point. | |
501 | */ | |
29884df0 | 502 | nfs_sync_mapping(filp->f_mapping); |
1da177e4 LT |
503 | nfs_zap_caches(inode); |
504 | out: | |
505 | rpc_clnt_sigunmask(NFS_CLIENT(inode), &oldset); | |
506 | return status; | |
507 | } | |
508 | ||
509 | /* | |
510 | * Lock a (portion of) a file | |
511 | */ | |
512 | static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl) | |
513 | { | |
514 | struct inode * inode = filp->f_mapping->host; | |
515 | ||
516 | dprintk("NFS: nfs_lock(f=%s/%ld, t=%x, fl=%x, r=%Ld:%Ld)\n", | |
517 | inode->i_sb->s_id, inode->i_ino, | |
518 | fl->fl_type, fl->fl_flags, | |
519 | (long long)fl->fl_start, (long long)fl->fl_end); | |
520 | ||
521 | if (!inode) | |
522 | return -EINVAL; | |
523 | ||
524 | /* No mandatory locks over NFS */ | |
0800c5f7 AM |
525 | if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID && |
526 | fl->fl_type != F_UNLCK) | |
1da177e4 LT |
527 | return -ENOLCK; |
528 | ||
529 | if (IS_GETLK(cmd)) | |
530 | return do_getlk(filp, cmd, fl); | |
531 | if (fl->fl_type == F_UNLCK) | |
532 | return do_unlk(filp, cmd, fl); | |
533 | return do_setlk(filp, cmd, fl); | |
534 | } | |
535 | ||
536 | /* | |
537 | * Lock a (portion of) a file | |
538 | */ | |
539 | static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl) | |
540 | { | |
541 | struct inode * inode = filp->f_mapping->host; | |
542 | ||
543 | dprintk("NFS: nfs_flock(f=%s/%ld, t=%x, fl=%x)\n", | |
544 | inode->i_sb->s_id, inode->i_ino, | |
545 | fl->fl_type, fl->fl_flags); | |
546 | ||
547 | if (!inode) | |
548 | return -EINVAL; | |
549 | ||
550 | /* | |
551 | * No BSD flocks over NFS allowed. | |
552 | * Note: we could try to fake a POSIX lock request here by | |
553 | * using ((u32) filp | 0x80000000) or some such as the pid. | |
554 | * Not sure whether that would be unique, though, or whether | |
555 | * that would break in other places. | |
556 | */ | |
557 | if (!(fl->fl_flags & FL_FLOCK)) | |
558 | return -ENOLCK; | |
559 | ||
560 | /* We're simulating flock() locks using posix locks on the server */ | |
561 | fl->fl_owner = (fl_owner_t)filp; | |
562 | fl->fl_start = 0; | |
563 | fl->fl_end = OFFSET_MAX; | |
564 | ||
565 | if (fl->fl_type == F_UNLCK) | |
566 | return do_unlk(filp, cmd, fl); | |
567 | return do_setlk(filp, cmd, fl); | |
568 | } |