X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Flinux%2Fsquashfs_fs_i.h;h=0d6a8795aaed60bcf6d6816f812ce2d01b6cb804;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=d0cf810a845455e8634b055d31090d3d93bf635c;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/include/linux/squashfs_fs_i.h b/include/linux/squashfs_fs_i.h index d0cf810a8..0d6a8795a 100644 --- a/include/linux/squashfs_fs_i.h +++ b/include/linux/squashfs_fs_i.h @@ -3,8 +3,7 @@ /* * Squashfs * - * Copyright (c) 2002, 2003, 2004, 2005, 2006 - * Phillip Lougher + * Copyright (c) 2002, 2003, 2004, 2005 Phillip Lougher * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -23,23 +22,22 @@ * squashfs_fs_i.h */ -struct squashfs_inode_info { - long long start_block; +typedef struct squashfs_inode_info { + unsigned int start_block; + unsigned int block_list_start; unsigned int offset; union { struct { - long long fragment_start_block; + unsigned int fragment_start_block; unsigned int fragment_size; unsigned int fragment_offset; - long long block_list_start; } s1; struct { - long long directory_index_start; + unsigned int directory_index_start; unsigned int directory_index_offset; unsigned int directory_index_count; - unsigned int parent_inode; } s2; } u; struct inode vfs_inode; -}; + } squashfs_inode_info; #endif