diff options
| author | Al Viro <viro@www.linux.org.uk> | 2005-05-01 08:59:18 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 08:59:18 -0700 | 
| commit | 3e8962be915bacc1d70e4849a075041838d60a3f (patch) | |
| tree | e2ef686fa0a18a429456b252ed9352cdc1ae65de /fs/reiserfs/bitmap.c | |
| parent | 6a3a16f2ef6f335286e2b2bf8284b0ab4ff38ec0 (diff) | |
| download | olio-linux-3.10-3e8962be915bacc1d70e4849a075041838d60a3f.tar.xz olio-linux-3.10-3e8962be915bacc1d70e4849a075041838d60a3f.zip  | |
[PATCH] reiserfs endianness: annotate little-endian objects
little-endian objects annotated as such; again, obviously no changes of
resulting code, we only replace __u16 with __le16, etc.  in relevant places.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Cc: <reiserfs-dev@namesys.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/reiserfs/bitmap.c')
| -rw-r--r-- | fs/reiserfs/bitmap.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/reiserfs/bitmap.c b/fs/reiserfs/bitmap.c index f4f16fada14..49c479c9454 100644 --- a/fs/reiserfs/bitmap.c +++ b/fs/reiserfs/bitmap.c @@ -260,8 +260,9 @@ static inline int block_group_used(struct super_block *s, u32 id) {  /*   * the packing is returned in disk byte order   */ -u32 reiserfs_choose_packing(struct inode *dir) { -    u32 packing; +__le32 reiserfs_choose_packing(struct inode *dir) +{ +    __le32 packing;      if (TEST_OPTION(packing_groups, dir->i_sb)) {  	u32 parent_dir = le32_to_cpu(INODE_PKEY(dir)->k_dir_id);  	/* @@ -655,7 +656,7 @@ static int get_left_neighbor(reiserfs_blocknr_hint_t *hint)      struct buffer_head * bh;      struct item_head * ih;      int pos_in_item; -    __u32 * item; +    __le32 * item;      int ret = 0;      if (!hint->path)		/* reiserfs code can call this function w/o pointer to path  |