Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
4c6e3905
Commit
4c6e3905
authored
Sep 11, 2009
by
Alexey Dobriyan
Committed by
James Toy
Sep 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by:
Andrew Morton
<
akpm@linux-foundation.org
>
parent
881e87bf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
fs/afs/flock.c
fs/afs/flock.c
+1
-1
fs/lockd/clntproc.c
fs/lockd/clntproc.c
+1
-1
fs/nfs/nfs4state.c
fs/nfs/nfs4state.c
+1
-1
include/linux/fs.h
include/linux/fs.h
+1
-1
No files found.
fs/afs/flock.c
View file @
4c6e3905
...
...
@@ -21,7 +21,7 @@ static void afs_fl_release_private(struct file_lock *fl);
static
struct
workqueue_struct
*
afs_lock_manager
;
static
DEFINE_MUTEX
(
afs_lock_manager_mutex
);
static
struct
file_lock_operations
afs_lock_ops
=
{
static
const
struct
file_lock_operations
afs_lock_ops
=
{
.
fl_copy_lock
=
afs_fl_copy_lock
,
.
fl_release_private
=
afs_fl_release_private
,
};
...
...
fs/lockd/clntproc.c
View file @
4c6e3905
...
...
@@ -458,7 +458,7 @@ static void nlmclnt_locks_release_private(struct file_lock *fl)
nlm_put_lockowner
(
fl
->
fl_u
.
nfs_fl
.
owner
);
}
static
struct
file_lock_operations
nlmclnt_lock_ops
=
{
static
const
struct
file_lock_operations
nlmclnt_lock_ops
=
{
.
fl_copy_lock
=
nlmclnt_locks_copy_lock
,
.
fl_release_private
=
nlmclnt_locks_release_private
,
};
...
...
fs/nfs/nfs4state.c
View file @
4c6e3905
...
...
@@ -638,7 +638,7 @@ static void nfs4_fl_release_lock(struct file_lock *fl)
nfs4_put_lock_state
(
fl
->
fl_u
.
nfs4_fl
.
owner
);
}
static
struct
file_lock_operations
nfs4_fl_lock_ops
=
{
static
const
struct
file_lock_operations
nfs4_fl_lock_ops
=
{
.
fl_copy_lock
=
nfs4_fl_copy_lock
,
.
fl_release_private
=
nfs4_fl_release_lock
,
};
...
...
include/linux/fs.h
View file @
4c6e3905
...
...
@@ -1068,7 +1068,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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment