diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-12-06 20:08:25 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-12-06 20:08:25 -0800 |
commit | 086b17046c068ef3fa6e69c03c786b39ca617a0a (patch) | |
tree | 027f1aac84c1c8eb990a027be963821643cf4d7f /fs/ocfs2/ocfs2.h | |
parent | da8f2e246183ae109f87694ee3f06e8fcca2931b (diff) | |
parent | 226291aa4641fa13cb5dec3bcb3379faa83009e2 (diff) | |
download | kernel_goldelico_gta04-086b17046c068ef3fa6e69c03c786b39ca617a0a.zip kernel_goldelico_gta04-086b17046c068ef3fa6e69c03c786b39ca617a0a.tar.gz kernel_goldelico_gta04-086b17046c068ef3fa6e69c03c786b39ca617a0a.tar.bz2 |
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2
* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2:
ocfs2_connection_find() returns pointer to bad structure
ocfs2: char is not always signed
Ocfs2: Stop tracking a negative dentry after dentry_iput().
ocfs2: fix memory leak
fs/ocfs2/dlm: Use GFP_ATOMIC under spin_lock
Diffstat (limited to 'fs/ocfs2/ocfs2.h')
-rw-r--r-- | fs/ocfs2/ocfs2.h | 6 |
1 files changed, 3 insertions, 3 deletions
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_blocking; + signed char l_level; + signed char l_requested; + signed char l_blocking; /* Data packed - type enum ocfs2_lock_type */ unsigned char l_type; |