diff options
author | Avantika Mathur <mathur@us.ibm.com> | 2006-12-06 23:41:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:48 -0500 |
commit | 09b882520bbe01f2e5044642109c1c1d19fe3559 (patch) | |
tree | aa3644cb7d9fdc6a8a40eb3160f4b28dbecae687 /fs | |
parent | 5d4958f923f431e148d9ba8ff894209a134b943e (diff) |
[PATCH] ext4: Eliminate inline functions
Removes all inline keywords, since the compiler will make static functions
inline when it is appropriate.
Signed-off-by: Avantika Mathur <mathur@us.ibm.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/extents.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index e41be1866d7d..dc2724fa7622 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -48,7 +48,7 @@ | |||
48 | * ext_pblock: | 48 | * ext_pblock: |
49 | * combine low and high parts of physical block number into ext4_fsblk_t | 49 | * combine low and high parts of physical block number into ext4_fsblk_t |
50 | */ | 50 | */ |
51 | static inline ext4_fsblk_t ext_pblock(struct ext4_extent *ex) | 51 | static ext4_fsblk_t ext_pblock(struct ext4_extent *ex) |
52 | { | 52 | { |
53 | ext4_fsblk_t block; | 53 | ext4_fsblk_t block; |
54 | 54 | ||
@@ -61,7 +61,7 @@ static inline ext4_fsblk_t ext_pblock(struct ext4_extent *ex) | |||
61 | * idx_pblock: | 61 | * idx_pblock: |
62 | * combine low and high parts of a leaf physical block number into ext4_fsblk_t | 62 | * combine low and high parts of a leaf physical block number into ext4_fsblk_t |
63 | */ | 63 | */ |
64 | static inline ext4_fsblk_t idx_pblock(struct ext4_extent_idx *ix) | 64 | static ext4_fsblk_t idx_pblock(struct ext4_extent_idx *ix) |
65 | { | 65 | { |
66 | ext4_fsblk_t block; | 66 | ext4_fsblk_t block; |
67 | 67 | ||
@@ -75,7 +75,7 @@ static inline ext4_fsblk_t idx_pblock(struct ext4_extent_idx *ix) | |||
75 | * stores a large physical block number into an extent struct, | 75 | * stores a large physical block number into an extent struct, |
76 | * breaking it into parts | 76 | * breaking it into parts |
77 | */ | 77 | */ |
78 | static inline void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb) | 78 | static void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb) |
79 | { | 79 | { |
80 | ex->ee_start = cpu_to_le32((unsigned long) (pb & 0xffffffff)); | 80 | ex->ee_start = cpu_to_le32((unsigned long) (pb & 0xffffffff)); |
81 | ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); | 81 | ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); |
@@ -86,7 +86,7 @@ static inline void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb | |||
86 | * stores a large physical block number into an index struct, | 86 | * stores a large physical block number into an index struct, |
87 | * breaking it into parts | 87 | * breaking it into parts |
88 | */ | 88 | */ |
89 | static inline void ext4_idx_store_pblock(struct ext4_extent_idx *ix, ext4_fsblk_t pb) | 89 | static void ext4_idx_store_pblock(struct ext4_extent_idx *ix, ext4_fsblk_t pb) |
90 | { | 90 | { |
91 | ix->ei_leaf = cpu_to_le32((unsigned long) (pb & 0xffffffff)); | 91 | ix->ei_leaf = cpu_to_le32((unsigned long) (pb & 0xffffffff)); |
92 | ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); | 92 | ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); |
@@ -216,7 +216,7 @@ ext4_ext_new_block(handle_t *handle, struct inode *inode, | |||
216 | return newblock; | 216 | return newblock; |
217 | } | 217 | } |
218 | 218 | ||
219 | static inline int ext4_ext_space_block(struct inode *inode) | 219 | static int ext4_ext_space_block(struct inode *inode) |
220 | { | 220 | { |
221 | int size; | 221 | int size; |
222 | 222 | ||
@@ -229,7 +229,7 @@ static inline int ext4_ext_space_block(struct inode *inode) | |||
229 | return size; | 229 | return size; |
230 | } | 230 | } |
231 | 231 | ||
232 | static inline int ext4_ext_space_block_idx(struct inode *inode) | 232 | static int ext4_ext_space_block_idx(struct inode *inode) |
233 | { | 233 | { |
234 | int size; | 234 | int size; |
235 | 235 | ||
@@ -242,7 +242,7 @@ static inline int ext4_ext_space_block_idx(struct inode *inode) | |||
242 | return size; | 242 | return size; |
243 | } | 243 | } |
244 | 244 | ||
245 | static inline int ext4_ext_space_root(struct inode *inode) | 245 | static int ext4_ext_space_root(struct inode *inode) |
246 | { | 246 | { |
247 | int size; | 247 | int size; |
248 | 248 | ||
@@ -256,7 +256,7 @@ static inline int ext4_ext_space_root(struct inode *inode) | |||
256 | return size; | 256 | return size; |
257 | } | 257 | } |
258 | 258 | ||
259 | static inline int ext4_ext_space_root_idx(struct inode *inode) | 259 | static int ext4_ext_space_root_idx(struct inode *inode) |
260 | { | 260 | { |
261 | int size; | 261 | int size; |
262 | 262 | ||
@@ -1103,7 +1103,7 @@ int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, | |||
1103 | return err; | 1103 | return err; |
1104 | } | 1104 | } |
1105 | 1105 | ||
1106 | static int inline | 1106 | static int |
1107 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, | 1107 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, |
1108 | struct ext4_extent *ex2) | 1108 | struct ext4_extent *ex2) |
1109 | { | 1109 | { |
@@ -1395,7 +1395,7 @@ int ext4_ext_walk_space(struct inode *inode, unsigned long block, | |||
1395 | return err; | 1395 | return err; |
1396 | } | 1396 | } |
1397 | 1397 | ||
1398 | static inline void | 1398 | static void |
1399 | ext4_ext_put_in_cache(struct inode *inode, __u32 block, | 1399 | ext4_ext_put_in_cache(struct inode *inode, __u32 block, |
1400 | __u32 len, __u32 start, int type) | 1400 | __u32 len, __u32 start, int type) |
1401 | { | 1401 | { |
@@ -1413,7 +1413,7 @@ ext4_ext_put_in_cache(struct inode *inode, __u32 block, | |||
1413 | * calculate boundaries of the gap that the requested block fits into | 1413 | * calculate boundaries of the gap that the requested block fits into |
1414 | * and cache this gap | 1414 | * and cache this gap |
1415 | */ | 1415 | */ |
1416 | static inline void | 1416 | static void |
1417 | ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, | 1417 | ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, |
1418 | unsigned long block) | 1418 | unsigned long block) |
1419 | { | 1419 | { |
@@ -1454,7 +1454,7 @@ ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, | |||
1454 | ext4_ext_put_in_cache(inode, lblock, len, 0, EXT4_EXT_CACHE_GAP); | 1454 | ext4_ext_put_in_cache(inode, lblock, len, 0, EXT4_EXT_CACHE_GAP); |
1455 | } | 1455 | } |
1456 | 1456 | ||
1457 | static inline int | 1457 | static int |
1458 | ext4_ext_in_cache(struct inode *inode, unsigned long block, | 1458 | ext4_ext_in_cache(struct inode *inode, unsigned long block, |
1459 | struct ext4_extent *ex) | 1459 | struct ext4_extent *ex) |
1460 | { | 1460 | { |
@@ -1523,7 +1523,7 @@ int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, | |||
1523 | * the caller should calculate credits under truncate_mutex and | 1523 | * the caller should calculate credits under truncate_mutex and |
1524 | * pass the actual path. | 1524 | * pass the actual path. |
1525 | */ | 1525 | */ |
1526 | int inline ext4_ext_calc_credits_for_insert(struct inode *inode, | 1526 | int ext4_ext_calc_credits_for_insert(struct inode *inode, |
1527 | struct ext4_ext_path *path) | 1527 | struct ext4_ext_path *path) |
1528 | { | 1528 | { |
1529 | int depth, needed; | 1529 | int depth, needed; |
@@ -1733,7 +1733,7 @@ out: | |||
1733 | * ext4_ext_more_to_rm: | 1733 | * ext4_ext_more_to_rm: |
1734 | * returns 1 if current index has to be freed (even partial) | 1734 | * returns 1 if current index has to be freed (even partial) |
1735 | */ | 1735 | */ |
1736 | static int inline | 1736 | static int |
1737 | ext4_ext_more_to_rm(struct ext4_ext_path *path) | 1737 | ext4_ext_more_to_rm(struct ext4_ext_path *path) |
1738 | { | 1738 | { |
1739 | BUG_ON(path->p_idx == NULL); | 1739 | BUG_ON(path->p_idx == NULL); |