]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
JFS: Update print_hex_dump() syntax
authorDave Kleikamp <shaggy@linux.vnet.ibm.com>
Wed, 13 Jun 2007 15:17:50 +0000 (10:17 -0500)
committerDave Kleikamp <shaggy@linux.vnet.ibm.com>
Wed, 13 Jun 2007 15:17:50 +0000 (10:17 -0500)
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
fs/jfs/jfs_imap.c
fs/jfs/jfs_logmgr.c
fs/jfs/jfs_metapage.c
fs/jfs/jfs_txnmgr.c
fs/jfs/xattr.c

index 19da0e17e4dec2f5281fe543b2a292be1616e1c2..3870ba8b9086b8f2c1c481eaf6a1eb2c79497238 100644 (file)
@@ -890,8 +890,8 @@ int diFree(struct inode *ip)
         * the map.
         */
        if (iagno >= imap->im_nextiag) {
-               printk(KERN_ERR "Dump of imap:\n");
-               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, imap, 32);
+               print_hex_dump(KERN_ERR, "imap: ", DUMP_PREFIX_ADDRESS, 16, 4,
+                              imap, 32, 0);
                jfs_error(ip->i_sb,
                          "diFree: inum = %d, iagno = %d, nextiag = %d",
                          (uint) inum, iagno, imap->im_nextiag);
index 2917ede90d6775dac6110f4cb82b01acf94bfdc9..de3e4a506dbcb7e88623fadac976756382b2c3b2 100644 (file)
@@ -1626,22 +1626,22 @@ void jfs_flush_journal(struct jfs_log *log, int wait)
                list_for_each_entry(lp, &log->synclist, synclist) {
                        if (lp->xflag & COMMIT_PAGE) {
                                struct metapage *mp = (struct metapage *)lp;
-                               printk (KERN_ERR "orphan metapage:\n");
-                               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS,
-                                              lp, sizeof(struct metapage));
-                               printk (KERN_ERR "page:\n");
-                               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS,
-                                              mp->page, sizeof(struct page));
-                       }
-                       else {
-                               printk (KERN_ERR "orphan tblock:\n");
-                               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS,
-                                              lp, sizeof(struct tblock));
-                       }
+                               print_hex_dump(KERN_ERR, "metapage: ",
+                                              DUMP_PREFIX_ADDRESS, 16, 4,
+                                              mp, sizeof(struct metapage), 0);
+                               print_hex_dump(KERN_ERR, "page: ",
+                                              DUMP_PREFIX_ADDRESS, 16,
+                                              sizeof(long), mp->page,
+                                              sizeof(struct page), 0);
+                       } else
+                               print_hex_dump(KERN_ERR, "tblock:",
+                                              DUMP_PREFIX_ADDRESS, 16, 4,
+                                              lp, sizeof(struct tblock), 0);
                }
        }
+#else
+       WARN_ON(!list_empty(&log->synclist));
 #endif
-       //assert(list_empty(&log->synclist));
        clear_bit(log_FLUSH, &log->flag);
 }
 
index 1c4fced1e6d858c2b38b089019d3c6d64b91b9be..77c7f1129dde636e734f6e354218c72eff5ed0d9 100644 (file)
@@ -472,8 +472,8 @@ add_failed:
        printk(KERN_ERR "JFS: bio_add_page failed unexpectedly\n");
        goto skip;
 dump_bio:
-       printk(KERN_ERR "JFS: dump of bio:\n");
-       print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, bio, sizeof(*bio));
+       print_hex_dump(KERN_ERR, "JFS: dump of bio: ", DUMP_PREFIX_ADDRESS, 16,
+                      4, bio, sizeof(*bio), 0);
 skip:
        bio_put(bio);
        unlock_page(page);
index d6f23f90ad363625086dba9dba18ece7c8e2212d..7aa1f7004eaf9f54aded2f394e8e0bcda21057fe 100644 (file)
@@ -830,16 +830,15 @@ struct tlock *txLock(tid_t tid, struct inode *ip, struct metapage * mp,
        /* assert(jfs_ip->fileset == AGGREGATE_I); */
        if (jfs_ip->fileset != AGGREGATE_I) {
                printk(KERN_ERR "txLock: trying to lock locked page!");
-               printk(KERN_ERR "ip:\n");
-               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, ip, sizeof(*ip));
-               printk(KERN_ERR "mp:\n");
-               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, mp, sizeof(*mp));
-               printk(KERN_ERR "Locker's tblk:\n");
-               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS,
-                              tid_to_tblock(tid), sizeof(struct tblock));
-               printk(KERN_ERR "Tlock:\n");
-               print_hex_dump(KERN_ERR, DUMP_PREFIX_ADDRESS, tlck,
-                              sizeof(*tlck));
+               print_hex_dump(KERN_ERR, "ip: ", DUMP_PREFIX_ADDRESS, 16, 4,
+                              ip, sizeof(*ip), 0);
+               print_hex_dump(KERN_ERR, "mp: ", DUMP_PREFIX_ADDRESS, 16, 4,
+                              mp, sizeof(*mp), 0);
+               print_hex_dump(KERN_ERR, "Locker's tblock: ",
+                              DUMP_PREFIX_ADDRESS, 16, 4, tid_to_tblock(tid),
+                              sizeof(struct tblock), 0);
+               print_hex_dump(KERN_ERR, "Tlock: ", DUMP_PREFIX_ADDRESS, 16, 4,
+                              tlck, sizeof(*tlck), 0);
                BUG();
        }
        INCREMENT(stattx.waitlock);     /* statistics */
index 2dcb1327542963d5348f16750dc768f38aa12a83..b2375f0774b72c89cb602358735a0fed289206f7 100644 (file)
@@ -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;