aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2014-02-03 12:13:09 -0500
committerJeff Layton <jlayton@redhat.com>2014-03-31 08:24:42 -0400
commitc918d42a27a9be0d78be490997d16d79cd5b9193 (patch)
tree67008d976453bfdd72280b0c5cddd3e07000cd4d
parent78ed8a13382b1354e95d0f2233577eba15cb8171 (diff)
locks: make /proc/locks show IS_FILE_PVT locks as type "FLPVT"
In a later patch, we'll be adding a new type of lock that's owned by the struct file instead of the files_struct. Those sorts of locks will be flagged with a new FL_FILE_PVT flag. Report these types of locks as "FLPVT" in /proc/locks to distinguish them from "classic" POSIX locks. Acked-by: J. Bruce Fields <bfields@fieldses.org> Signed-off-by: Jeff Layton <jlayton@redhat.com>
-rw-r--r--fs/locks.c11
-rw-r--r--include/linux/fs.h1
2 files changed, 10 insertions, 2 deletions
diff --git a/fs/locks.c b/fs/locks.c
index 4d4e790150e0..0e1f0df8de12 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -135,6 +135,7 @@
135#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX) 135#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
136#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK) 136#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
137#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG)) 137#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG))
138#define IS_FILE_PVT(fl) (fl->fl_flags & FL_FILE_PVT)
138 139
139static bool lease_breaking(struct file_lock *fl) 140static bool lease_breaking(struct file_lock *fl)
140{ 141{
@@ -2313,8 +2314,14 @@ static void lock_get_status(struct seq_file *f, struct file_lock *fl,
2313 2314
2314 seq_printf(f, "%lld:%s ", id, pfx); 2315 seq_printf(f, "%lld:%s ", id, pfx);
2315 if (IS_POSIX(fl)) { 2316 if (IS_POSIX(fl)) {
2316 seq_printf(f, "%6s %s ", 2317 if (fl->fl_flags & FL_ACCESS)
2317 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ", 2318 seq_printf(f, "ACCESS");
2319 else if (IS_FILE_PVT(fl))
2320 seq_printf(f, "FLPVT ");
2321 else
2322 seq_printf(f, "POSIX ");
2323
2324 seq_printf(f, " %s ",
2318 (inode == NULL) ? "*NOINODE*" : 2325 (inode == NULL) ? "*NOINODE*" :
2319 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY "); 2326 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
2320 } else if (IS_FLOCK(fl)) { 2327 } else if (IS_FLOCK(fl)) {
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 7527d96913d3..5ddeb8de5e77 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -888,6 +888,7 @@ static inline int file_check_writeable(struct file *filp)
888#define FL_SLEEP 128 /* A blocking lock */ 888#define FL_SLEEP 128 /* A blocking lock */
889#define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ 889#define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */
890#define FL_UNLOCK_PENDING 512 /* Lease is being broken */ 890#define FL_UNLOCK_PENDING 512 /* Lease is being broken */
891#define FL_FILE_PVT 1024 /* lock is private to the file */
891 892
892/* 893/*
893 * Special return value from posix_lock_file() and vfs_lock_file() for 894 * Special return value from posix_lock_file() and vfs_lock_file() for