diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-10-04 19:28:17 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-10-04 19:28:17 -0400 |
commit | 0f35ad6f688e9b7bcaa918a42130695822906f11 (patch) | |
tree | 84ed853848ec35a0ab43cdcf22a27629c4690ef5 /fs | |
parent | 5f65753033d8c5a53e65810bff3832e8282c68d1 (diff) |
NFSv4.1: Deal with seqid wraparound in the pNFS return-on-close code
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/pnfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c index de827251bdac..42613bd19f8e 100644 --- a/fs/nfs/pnfs.c +++ b/fs/nfs/pnfs.c | |||
@@ -801,7 +801,7 @@ void pnfs_roc_set_barrier(struct inode *ino, u32 barrier) | |||
801 | 801 | ||
802 | spin_lock(&ino->i_lock); | 802 | spin_lock(&ino->i_lock); |
803 | lo = NFS_I(ino)->layout; | 803 | lo = NFS_I(ino)->layout; |
804 | if ((int)(barrier - lo->plh_barrier) > 0) | 804 | if (pnfs_seqid_is_newer(barrier, lo->plh_barrier)) |
805 | lo->plh_barrier = barrier; | 805 | lo->plh_barrier = barrier; |
806 | spin_unlock(&ino->i_lock); | 806 | spin_unlock(&ino->i_lock); |
807 | } | 807 | } |