Changeset 8994 for branches/orange-next/src/kernel/linux-2.6/inode.c
- Timestamp:
- 08/05/11 14:23:00 (22 months ago)
- Files:
-
- 1 modified
-
branches/orange-next/src/kernel/linux-2.6/inode.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/orange-next/src/kernel/linux-2.6/inode.c
r8872 r8994 15 15 #include "pvfs2-types.h" 16 16 #include "pvfs2-internal.h" 17 #include "../../common/misc/pvfs2-handle-to-str.h" 17 18 18 19 static int read_one_page(struct page *page) … … 170 171 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) 171 172 return; 172 gossip_debug(GOSSIP_INODE_DEBUG, "pvfs2: pvfs2_truncate called on inode % llu"173 "with size %ld\n", llu(get_handle_from_ino(inode)), (long) orig_size);173 gossip_debug(GOSSIP_INODE_DEBUG, "pvfs2: pvfs2_truncate called on inode %s " 174 "with size %ld\n", PVFS_handle_to_str(get_handle_from_ino(inode)), (long) orig_size); 174 175 175 176 /* successful truncate when size changes also requires mtime updates … … 517 518 #endif 518 519 } 519 gossip_debug(GOSSIP_INODE_DEBUG, "iget handle % llu, fsid %d hash %ld i_ino %lu\n",520 ref->handle, ref->fs_id, hash, inode->i_ino);520 gossip_debug(GOSSIP_INODE_DEBUG, "iget handle %s, fsid %d hash %ld i_ino %lu\n", 521 PVFS_handle_to_str(ref->handle), ref->fs_id, hash, inode->i_ino); 521 522 return inode; 522 523 } … … 637 638 } 638 639 #if !defined(PVFS2_LINUX_KERNEL_2_4) && defined(HAVE_GENERIC_GETXATTR) && defined(CONFIG_FS_POSIX_ACL) 639 gossip_debug(GOSSIP_ACL_DEBUG, "Initializing ACL's for inode % llu\n",640 llu(get_handle_from_ino(inode)));640 gossip_debug(GOSSIP_ACL_DEBUG, "Initializing ACL's for inode %s\n", 641 PVFS_handle_to_str(get_handle_from_ino(inode))); 641 642 /* Initialize the ACLs of the new inode */ 642 643 pvfs2_init_acl(inode, dir);
