diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | 5ba253313d014364a9b87b6fa975ce2fc9759aa6 (patch) | |
tree | b6f7b222b980d7a28e8d73d6cf939454a77205b1 /fs | |
parent | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (diff) |
more low-hanging fruits - kernel, fs, lib signedness
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/jfs/jfs_dtree.c | 2 | ||||
-rw-r--r-- | fs/jfs/jfs_incore.h | 2 | ||||
-rw-r--r-- | fs/jfs/jfs_logmgr.h | 2 | ||||
-rw-r--r-- | fs/smbfs/smbiod.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/fs/jfs/jfs_dtree.c b/fs/jfs/jfs_dtree.c index c14ba3cfa818..df0b8535de84 100644 --- a/fs/jfs/jfs_dtree.c +++ b/fs/jfs/jfs_dtree.c | |||
@@ -520,7 +520,7 @@ static void free_index(tid_t tid, struct inode *ip, u32 index, u32 next) | |||
520 | * Changes an entry in the directory index table | 520 | * Changes an entry in the directory index table |
521 | */ | 521 | */ |
522 | static void modify_index(tid_t tid, struct inode *ip, u32 index, s64 bn, | 522 | static void modify_index(tid_t tid, struct inode *ip, u32 index, s64 bn, |
523 | int slot, struct metapage ** mp, u64 *lblock) | 523 | int slot, struct metapage ** mp, s64 *lblock) |
524 | { | 524 | { |
525 | struct dir_table_slot *dirtab_slot; | 525 | struct dir_table_slot *dirtab_slot; |
526 | 526 | ||
diff --git a/fs/jfs/jfs_incore.h b/fs/jfs/jfs_incore.h index cb8f30985ad1..439901d205fe 100644 --- a/fs/jfs/jfs_incore.h +++ b/fs/jfs/jfs_incore.h | |||
@@ -49,7 +49,7 @@ struct jfs_inode_info { | |||
49 | short btorder; /* access order */ | 49 | short btorder; /* access order */ |
50 | short btindex; /* btpage entry index*/ | 50 | short btindex; /* btpage entry index*/ |
51 | struct inode *ipimap; /* inode map */ | 51 | struct inode *ipimap; /* inode map */ |
52 | long cflag; /* commit flags */ | 52 | unsigned long cflag; /* commit flags */ |
53 | u16 bxflag; /* xflag of pseudo buffer? */ | 53 | u16 bxflag; /* xflag of pseudo buffer? */ |
54 | unchar agno; /* ag number */ | 54 | unchar agno; /* ag number */ |
55 | signed char active_ag; /* ag currently allocating from */ | 55 | signed char active_ag; /* ag currently allocating from */ |
diff --git a/fs/jfs/jfs_logmgr.h b/fs/jfs/jfs_logmgr.h index 1f85ef0ec045..9236bc49ae7f 100644 --- a/fs/jfs/jfs_logmgr.h +++ b/fs/jfs/jfs_logmgr.h | |||
@@ -376,7 +376,7 @@ struct jfs_log { | |||
376 | int size; /* 4: log size in log page (in page) */ | 376 | int size; /* 4: log size in log page (in page) */ |
377 | int l2bsize; /* 4: log2 of bsize */ | 377 | int l2bsize; /* 4: log2 of bsize */ |
378 | 378 | ||
379 | long flag; /* 4: flag */ | 379 | unsigned long flag; /* 4: flag */ |
380 | 380 | ||
381 | struct lbuf *lbuf_free; /* 4: free lbufs */ | 381 | struct lbuf *lbuf_free; /* 4: free lbufs */ |
382 | wait_queue_head_t free_wait; /* 4: */ | 382 | wait_queue_head_t free_wait; /* 4: */ |
diff --git a/fs/smbfs/smbiod.c b/fs/smbfs/smbiod.c index 67176af8515f..283c5720c9de 100644 --- a/fs/smbfs/smbiod.c +++ b/fs/smbfs/smbiod.c | |||
@@ -45,7 +45,7 @@ static LIST_HEAD(smb_servers); | |||
45 | static DEFINE_SPINLOCK(servers_lock); | 45 | static DEFINE_SPINLOCK(servers_lock); |
46 | 46 | ||
47 | #define SMBIOD_DATA_READY (1<<0) | 47 | #define SMBIOD_DATA_READY (1<<0) |
48 | static long smbiod_flags; | 48 | static unsigned long smbiod_flags; |
49 | 49 | ||
50 | static int smbiod(void *); | 50 | static int smbiod(void *); |
51 | static int smbiod_start(void); | 51 | static int smbiod_start(void); |