diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 17:01:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 07:17:25 -0700 |
commit | 6aed62853c72e29f2c97bbac7712cb398e8c9437 (patch) | |
tree | 4362cfa98b6b588f84fb2241115b7ef5b5dfce55 /include/linux | |
parent | 6e1d5dcc2bbbe71dbf010c747e15739bef6b7218 (diff) | |
download | linux-3.10-6aed62853c72e29f2c97bbac7712cb398e8c9437.tar.gz linux-3.10-6aed62853c72e29f2c97bbac7712cb398e8c9437.tar.bz2 linux-3.10-6aed62853c72e29f2c97bbac7712cb398e8c9437.zip |
const: make file_lock_operations const
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 13c030ebfd2..6146dec21c3 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1066,7 +1066,7 @@ struct file_lock { struct fasync_struct * fl_fasync; /* for lease break notifications */ unsigned long fl_break_time; /* for nonblocking lease breaks */ - struct file_lock_operations *fl_ops; /* Callbacks for filesystems */ + const struct file_lock_operations *fl_ops; /* Callbacks for filesystems */ struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */ union { struct nfs_lock_info nfs_fl; |