search for: 1efea36

Displaying 2 results from an estimated 2 matches for "1efea36".

Did you mean: 14feae6
2010 Nov 18
2
ocfs2: char is not always signed
...ers. Signed-off-by: Milton Miller <miltonm at bga.com> --- I did not look for other fields that might be char. PowerPC compilers default to unsigned char, and aparently arm does as well from a quick google search, to name two examples. diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index 1efea36..70dd3b1 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h @@ -159,9 +159,9 @@ struct ocfs2_lock_res { char l_name[OCFS2_LOCK_ID_MAX_LEN]; unsigned int l_ro_holders; unsigned int l_ex_holders; - char l_level; - char l_requested; - char l...
2010 Nov 23
0
[PATCH v3 13/22] ocfs2: use little-endian bitops
...ker <joel.becker at oracle.com> Cc: Mark Fasheh <mfasheh at suse.com> Cc: ocfs2-devel at oss.oracle.com --- No change from previous submission fs/ocfs2/ocfs2.h | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index 1efea36..685f5c5 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h @@ -826,18 +826,21 @@ static inline unsigned int ocfs2_clusters_to_megabytes(struct super_block *sb, static inline void _ocfs2_set_bit(unsigned int bit, unsigned long *bitmap) { - ext2_set_bit(bit, bitmap); + __test_and_set_le_bit(bi...