diff options
author | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2007-06-13 15:17:50 (GMT) |
---|---|---|
committer | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2007-06-13 15:17:50 (GMT) |
commit | 288e4d838d1e999c0515f85a337cacb2be233071 (patch) | |
tree | 45b7a24ccc679310c28b1edbb2633c1739d50afc /fs/jfs/xattr.c | |
parent | 209e101bf408a50acc426e32c8252daefacde5b0 (diff) | |
download | linux-288e4d838d1e999c0515f85a337cacb2be233071.tar.xz |
JFS: Update print_hex_dump() syntax
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Diffstat (limited to 'fs/jfs/xattr.c')
-rw-r--r-- | fs/jfs/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/xattr.c b/fs/jfs/xattr.c index 2dcb132..b2375f0 100644 --- a/fs/jfs/xattr.c +++ b/fs/jfs/xattr.c @@ -590,8 +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"); - print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, ea_buf->xattr, - ea_size); + print_hex_dump(KERN_ERR, "", DUMP_PREFIX_ADDRESS, 16, 1, + ea_buf->xattr, ea_size, 1); ea_release(inode, ea_buf); rc = -EIO; goto clean_up; |