lkml.org 
[lkml]   [2006]   [Apr]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Subject[RFC][5/21]bfs modify format strings
    From
    Date
    Summary of this patch:
    [5/21] modify format strings in print(bfs)
    - As i_blocks of VFS inode gets 8 byte variable, change its
    string format to %lld.

    Signed-off-by: Takashi Sato sho@tnes.nec.co.jp
    ---
    diff -upNr -X linux-2.6.17-rc1.org/Documentation/dontdiff linux-2.6.17-rc1.org/fs/bfs/inode.c linux-2.6.17-rc1.tmp/fs/bfs/inode.c
    --- linux-2.6.17-rc1.org/fs/bfs/inode.c 2006-03-29 11:48:27.000000000 +0900
    +++ linux-2.6.17-rc1.tmp/fs/bfs/inode.c 2006-03-29 15:37:56.000000000 +0900
    @@ -75,7 +75,7 @@ static void bfs_read_inode(struct inode
    inode->i_nlink = le32_to_cpu(di->i_nlink);
    inode->i_size = BFS_FILESIZE(di);
    inode->i_blocks = BFS_FILEBLOCKS(di);
    - if (inode->i_size || inode->i_blocks) dprintf("Registered inode with %lld size, %ld blocks\n", inode->i_size, inode->i_blocks);
    + if (inode->i_size || inode->i_blocks) dprintf("Registered inode with %lld size, %lld blocks\n", inode->i_size, inode->i_blocks);
    inode->i_blksize = PAGE_SIZE;
    inode->i_atime.tv_sec = le32_to_cpu(di->i_atime);
    inode->i_mtime.tv_sec = le32_to_cpu(di->i_mtime);
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2006-04-13 09:08    [W:4.140 / U:0.004 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site