Show
Ignore:
Timestamp:
08/05/11 14:23:00 (22 months ago)
Author:
dcypher
Message:

replaced %llu->%s for (PVFS|TROVE)_handle

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/orange-next/src/kernel/linux-2.6/inode.c

    r8872 r8994  
    1515#include "pvfs2-types.h" 
    1616#include "pvfs2-internal.h" 
     17#include "../../common/misc/pvfs2-handle-to-str.h" 
    1718 
    1819static int read_one_page(struct page *page) 
     
    170171    if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) 
    171172        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); 
    174175 
    175176    /* successful truncate when size changes also requires mtime updates  
     
    517518#endif 
    518519    } 
    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); 
    521522    return inode; 
    522523} 
     
    637638        } 
    638639#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))); 
    641642        /* Initialize the ACLs of the new inode */ 
    642643        pvfs2_init_acl(inode, dir);