From: alebre <al...@us...> - 2011-01-06 14:13:18
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "kdfs". The branch, make_kdfs_compile has been updated via 50baf57cb516e181ece3f3fb61d1dc9953b05fcb (commit) from a9396af95b248bccbcdc80c9ddb15de60478432d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 50baf57cb516e181ece3f3fb61d1dc9953b05fcb Author: ad <leb...@fr...> Date: Thu Jan 6 08:25:34 2011 +0000 Fix wrong usage of inode->i_inode during inode deletion - Adrien diff --git a/fs/kdfs/super.c b/fs/kdfs/super.c index 028be2d..5021db6 100644 --- a/fs/kdfs/super.c +++ b/fs/kdfs/super.c @@ -1170,7 +1170,7 @@ void kdfs_drop_inode(struct inode *inode) k_sb = kdfs_getsb(kerrighed_node_id); /* Close the physical file before it is removed in kdfs_remove_local_ino */ /* TODO PRIORITY 1: if the file is deleted on another node that the one where it has been created, we do not remove the local_ino from the bitmap */ - kdfs_remove_local_ino(k_sb, inode->i_ino); + kdfs_remove_local_ino(k_sb, ino); __kdfs_putsb(k_sb); } } ----------------------------------------------------------------------- Summary of changes: fs/kdfs/super.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- kdfs |