Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139187
b: refs/heads/master
c: 63cd885
h: refs/heads/master
i:
  139185: 2a6fce9
  139183: 261ea5d
v: v3
  • Loading branch information
Harvey Harrison authored and Linus Torvalds committed Apr 1, 2009
1 parent aee41b2 commit 916347e
Show file tree
Hide file tree
Showing 8 changed files with 216 additions and 228 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: 311d07611e8b354cc1ee6546e4c574c01111adc8
refs/heads/master: 63cd885426872254e82dac2d9e13ea4f720c21dc
4 changes: 2 additions & 2 deletions trunk/fs/ntfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
/**
* The little endian Unicode string $I30 as a global constant.
*/
ntfschar I30[5] = { const_cpu_to_le16('$'), const_cpu_to_le16('I'),
const_cpu_to_le16('3'), const_cpu_to_le16('0'), 0 };
ntfschar I30[5] = { cpu_to_le16('$'), cpu_to_le16('I'),
cpu_to_le16('3'), cpu_to_le16('0'), 0 };

/**
* ntfs_lookup_inode_by_name - find an inode in a directory given its name
Expand Down
3 changes: 1 addition & 2 deletions trunk/fs/ntfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1975,8 +1975,7 @@ int ntfs_read_inode_mount(struct inode *vi)
goto em_put_err_out;
next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
le16_to_cpu(al_entry->length));
if (le32_to_cpu(al_entry->type) >
const_le32_to_cpu(AT_DATA))
if (le32_to_cpu(al_entry->type) > le32_to_cpu(AT_DATA))
goto em_put_err_out;
if (AT_DATA != al_entry->type)
continue;
Expand Down
Loading

0 comments on commit 916347e

Please sign in to comment.