diff options
author | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2007-06-06 16:30:17 -0500 |
---|---|---|
committer | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2007-06-06 16:30:17 -0500 |
commit | 209e101bf408a50acc426e32c8252daefacde5b0 (patch) | |
tree | 9627c9273e35f142e58059aa85b77c0367c45315 /fs/jfs/xattr.c | |
parent | f720e3ba558680cc7dd3995d005bdc8ee2ef46af (diff) | |
download | op-kernel-dev-209e101bf408a50acc426e32c8252daefacde5b0.zip op-kernel-dev-209e101bf408a50acc426e32c8252daefacde5b0.tar.gz |
JFS: use print_hex_dump() rather than private dump_mem() function
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Diffstat (limited to 'fs/jfs/xattr.c')
-rw-r--r-- | fs/jfs/xattr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/jfs/xattr.c b/fs/jfs/xattr.c index 5c0f2de..2dcb132 100644 --- a/fs/jfs/xattr.c +++ b/fs/jfs/xattr.c @@ -590,7 +590,8 @@ static int ea_get(struct inode *inode, struct ea_buffer *ea_buf, int min_size) size_check: if (EALIST_SIZE(ea_buf->xattr) != ea_size) { printk(KERN_ERR "ea_get: invalid extended attribute\n"); - dump_mem("xattr", ea_buf->xattr, ea_size); + print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, ea_buf->xattr, + ea_size); ea_release(inode, ea_buf); rc = -EIO; goto clean_up; |