diff options
author | Dan Carpenter <error27@gmail.com> | 2010-05-07 04:27:14 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:32 -0400 |
commit | a5ee751c15016d0deee0d651e42a3b163ea73ade (patch) | |
tree | eaf993df4c0c8d020ca16a778b34b24f8cb7f571 /fs/ceph/caps.c | |
parent | 0f8605f2bde2c69737709765dfc574558ea35d4e (diff) |
ceph: cleanup: remove unused assignement
We don't ever use "dirty" so we can remove it.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/caps.c')
-rw-r--r-- | fs/ceph/caps.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c index 74c74842c860..0e85d3c80790 100644 --- a/fs/ceph/caps.c +++ b/fs/ceph/caps.c | |||
@@ -1718,10 +1718,9 @@ out_unlocked: | |||
1718 | static int caps_are_flushed(struct inode *inode, unsigned tid) | 1718 | static int caps_are_flushed(struct inode *inode, unsigned tid) |
1719 | { | 1719 | { |
1720 | struct ceph_inode_info *ci = ceph_inode(inode); | 1720 | struct ceph_inode_info *ci = ceph_inode(inode); |
1721 | int dirty, i, ret = 1; | 1721 | int i, ret = 1; |
1722 | 1722 | ||
1723 | spin_lock(&inode->i_lock); | 1723 | spin_lock(&inode->i_lock); |
1724 | dirty = __ceph_caps_dirty(ci); | ||
1725 | for (i = 0; i < CEPH_CAP_BITS; i++) | 1724 | for (i = 0; i < CEPH_CAP_BITS; i++) |
1726 | if ((ci->i_flushing_caps & (1 << i)) && | 1725 | if ((ci->i_flushing_caps & (1 << i)) && |
1727 | ci->i_cap_flush_tid[i] <= tid) { | 1726 | ci->i_cap_flush_tid[i] <= tid) { |