Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29681
b: refs/heads/master
c: 96710b2
h: refs/heads/master
i:
  29679: 2ca1219
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 25, 2006
1 parent ae209f8 commit 8c7582e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 022a6dc5f461a30615bcd1687569abeee7ef8ba2
refs/heads/master: 96710b29e05f3b470bc4206366021b56e28d5208
6 changes: 3 additions & 3 deletions trunk/fs/ufs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void ufs_print_super_stuff(struct super_block *sb,
struct ufs_super_block_third * usb3)
{
printk("ufs_print_super_stuff\n");
printk("size of usb: %u\n", sizeof(struct ufs_super_block));
printk("size of usb: %zu\n", sizeof(struct ufs_super_block));
printk(" magic: 0x%x\n", fs32_to_cpu(sb, usb3->fs_magic));
printk(" sblkno: %u\n", fs32_to_cpu(sb, usb1->fs_sblkno));
printk(" cblkno: %u\n", fs32_to_cpu(sb, usb1->fs_cblkno));
Expand Down Expand Up @@ -144,7 +144,7 @@ void ufs2_print_super_stuff(
struct ufs_super_block *usb)
{
printk("ufs_print_super_stuff\n");
printk("size of usb: %u\n", sizeof(struct ufs_super_block));
printk("size of usb: %zu\n", sizeof(struct ufs_super_block));
printk(" magic: 0x%x\n", fs32_to_cpu(sb, usb->fs_magic));
printk(" fs_size: %llu\n",
(unsigned long long)fs64_to_cpu(sb, usb->fs_u11.fs_u2.fs_size));
Expand Down Expand Up @@ -172,7 +172,7 @@ void ufs2_print_super_stuff(
void ufs_print_cylinder_stuff(struct super_block *sb, struct ufs_cylinder_group *cg)
{
printk("\nufs_print_cylinder_stuff\n");
printk("size of ucg: %u\n", sizeof(struct ufs_cylinder_group));
printk("size of ucg: %zu\n", sizeof(struct ufs_cylinder_group));
printk(" magic: %x\n", fs32_to_cpu(sb, cg->cg_magic));
printk(" time: %u\n", fs32_to_cpu(sb, cg->cg_time));
printk(" cgx: %u\n", fs32_to_cpu(sb, cg->cg_cgx));
Expand Down

0 comments on commit 8c7582e

Please sign in to comment.