diff options
author | Cruz Julian Bishop <cruzjbishop@gmail.com> | 2012-10-04 20:14:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:05:10 -0400 |
commit | c90518290ec88a45305a709aae72003a9bc8ad7c (patch) | |
tree | 8a3de56794b0a5117672ec62300ebded30478816 /fs/fat | |
parent | 4a3aeb13b774a941823b58715eb4144acedae92a (diff) |
fs/fat: fix two checkpatch issues in cache.c
This does the following:
1: Splits the arguments of a function call to stop it
from exceeding 80 characters
2: Re-indents the arguments of another function call
to prevent the splitting of a quoted string.
Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fat')
-rw-r--r-- | fs/fat/cache.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/fat/cache.c b/fs/fat/cache.c index 1cc7038e273d..91ad9e1c9441 100644 --- a/fs/fat/cache.c +++ b/fs/fat/cache.c | |||
@@ -190,7 +190,8 @@ static void __fat_cache_inval_inode(struct inode *inode) | |||
190 | struct fat_cache *cache; | 190 | struct fat_cache *cache; |
191 | 191 | ||
192 | while (!list_empty(&i->cache_lru)) { | 192 | while (!list_empty(&i->cache_lru)) { |
193 | cache = list_entry(i->cache_lru.next, struct fat_cache, cache_list); | 193 | cache = list_entry(i->cache_lru.next, |
194 | struct fat_cache, cache_list); | ||
194 | list_del_init(&cache->cache_list); | 195 | list_del_init(&cache->cache_list); |
195 | i->nr_caches--; | 196 | i->nr_caches--; |
196 | fat_cache_free(cache); | 197 | fat_cache_free(cache); |
@@ -261,9 +262,10 @@ int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) | |||
261 | if (nr < 0) | 262 | if (nr < 0) |
262 | goto out; | 263 | goto out; |
263 | else if (nr == FAT_ENT_FREE) { | 264 | else if (nr == FAT_ENT_FREE) { |
264 | fat_fs_error_ratelimit(sb, "%s: invalid cluster chain" | 265 | fat_fs_error_ratelimit(sb, |
265 | " (i_pos %lld)", __func__, | 266 | "%s: invalid cluster chain (i_pos %lld)", |
266 | MSDOS_I(inode)->i_pos); | 267 | __func__, |
268 | MSDOS_I(inode)->i_pos); | ||
267 | nr = -EIO; | 269 | nr = -EIO; |
268 | goto out; | 270 | goto out; |
269 | } else if (nr == FAT_ENT_EOF) { | 271 | } else if (nr == FAT_ENT_EOF) { |