Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188728
b: refs/heads/master
c: a636974
h: refs/heads/master
v: v3
  • Loading branch information
Sage Weil committed Feb 23, 2010
1 parent 1fbaf0b commit abb467f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4ce1e9adabbad8f2c45ceeeb6de56cc368484297
refs/heads/master: a6369741c48815fedfce7072b7a9cd98b5bafd56
11 changes: 4 additions & 7 deletions trunk/fs/ceph/caps.c
Original file line number Diff line number Diff line change
Expand Up @@ -856,8 +856,8 @@ static int __ceph_is_any_caps(struct ceph_inode_info *ci)
}

/*
* caller should hold i_lock, and session s_mutex.
* returns true if this is the last cap. if so, caller should iput.
* caller should hold i_lock.
* caller will not hold session s_mutex if called from destroy_inode.
*/
void __ceph_remove_cap(struct ceph_cap *cap)
{
Expand Down Expand Up @@ -974,15 +974,14 @@ static int send_cap_msg(struct ceph_mds_session *session,
}

/*
* Queue cap releases when an inode is dropped from our
* cache.
* Queue cap releases when an inode is dropped from our cache. Since
* inode is about to be destroyed, there is no need for i_lock.
*/
void ceph_queue_caps_release(struct inode *inode)
{
struct ceph_inode_info *ci = ceph_inode(inode);
struct rb_node *p;

spin_lock(&inode->i_lock);
p = rb_first(&ci->i_caps);
while (p) {
struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
Expand Down Expand Up @@ -1024,9 +1023,7 @@ void ceph_queue_caps_release(struct inode *inode)
spin_unlock(&session->s_cap_lock);
p = rb_next(p);
__ceph_remove_cap(cap);

}
spin_unlock(&inode->i_lock);
}

/*
Expand Down

0 comments on commit abb467f

Please sign in to comment.