Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211578
b: refs/heads/master
c: 66e5db0
h: refs/heads/master
v: v3
  • Loading branch information
Christoph Hellwig authored and Christoph Hellwig committed Oct 1, 2010
1 parent 1088a57 commit 1587f6a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition 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: f17c89bfcc9cccd405098eac3ec1ebfddf03279e
refs/heads/master: 66e5db05bb6670f314d90aba5998e6a033e4d563
1 change: 0 additions & 1 deletion trunk/fs/hfsplus/hfsplus_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ struct hfsplus_sb_info {
int alloc_blksz_shift;
u32 total_blocks;
u32 free_blocks;
u32 next_alloc;
u32 next_cnid;
u32 file_count;
u32 folder_count;
Expand Down
2 changes: 0 additions & 2 deletions trunk/fs/hfsplus/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ int hfsplus_sync_fs(struct super_block *sb, int wait)
sb->s_dirt = 0;

vhdr->free_blocks = cpu_to_be32(sbi->free_blocks);
vhdr->next_alloc = cpu_to_be32(sbi->next_alloc);
vhdr->next_cnid = cpu_to_be32(sbi->next_cnid);
vhdr->folder_count = cpu_to_be32(sbi->folder_count);
vhdr->file_count = cpu_to_be32(sbi->file_count);
Expand Down Expand Up @@ -355,7 +354,6 @@ static int hfsplus_fill_super(struct super_block *sb, void *data, int silent)
}
sbi->total_blocks = be32_to_cpu(vhdr->total_blocks);
sbi->free_blocks = be32_to_cpu(vhdr->free_blocks);
sbi->next_alloc = be32_to_cpu(vhdr->next_alloc);
sbi->next_cnid = be32_to_cpu(vhdr->next_cnid);
sbi->file_count = be32_to_cpu(vhdr->file_count);
sbi->folder_count = be32_to_cpu(vhdr->folder_count);
Expand Down

0 comments on commit 1587f6a

Please sign in to comment.