diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2013-01-18 21:17:14 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-01-22 04:48:31 -0500 |
commit | 99600051b04bc4ec8bd4d16a8bf993ca54042db6 (patch) | |
tree | 8af25f21375f8538acfd10a8ef524bf8bb52826b /fs/udf/inode.c | |
parent | 9734c971aa6be6db61226b0046e080ca10383748 (diff) |
udf: add extent cache support in case of file reading
This patch implements extent caching in case of file reading.
While reading a file, currently, UDF reads metadata serially
which takes a lot of time depending on the number of extents present
in the file. Caching last accessd extent improves metadata read time.
Instead of reading file metadata from start, now we read from
the cached extent.
This patch considerably improves the time spent by CPU in kernel mode.
For example, while reading a 10.9 GB file using dd:
Time before applying patch:
11677022208 bytes (10.9GB) copied, 1529.748921 seconds, 7.3MB/s
real 25m 29.85s
user 0m 12.41s
sys 15m 34.75s
Time after applying patch:
11677022208 bytes (10.9GB) copied, 1469.338231 seconds, 7.6MB/s
real 24m 29.44s
user 0m 15.73s
sys 3m 27.61s
[JK: Fix bh refcounting issues, simplify initialization]
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Signed-off-by: Bonggil Bak <bgbak@samsung.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/inode.c')
-rw-r--r-- | fs/udf/inode.c | 86 |
1 files changed, 80 insertions, 6 deletions
diff --git a/fs/udf/inode.c b/fs/udf/inode.c index cbae1ed0b7c1..7a12e48ad819 100644 --- a/fs/udf/inode.c +++ b/fs/udf/inode.c | |||
@@ -67,6 +67,74 @@ static void udf_update_extents(struct inode *, | |||
67 | struct extent_position *); | 67 | struct extent_position *); |
68 | static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int); | 68 | static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int); |
69 | 69 | ||
70 | static void __udf_clear_extent_cache(struct inode *inode) | ||
71 | { | ||
72 | struct udf_inode_info *iinfo = UDF_I(inode); | ||
73 | |||
74 | if (iinfo->cached_extent.lstart != -1) { | ||
75 | brelse(iinfo->cached_extent.epos.bh); | ||
76 | iinfo->cached_extent.lstart = -1; | ||
77 | } | ||
78 | } | ||
79 | |||
80 | /* Invalidate extent cache */ | ||
81 | static void udf_clear_extent_cache(struct inode *inode) | ||
82 | { | ||
83 | struct udf_inode_info *iinfo = UDF_I(inode); | ||
84 | |||
85 | spin_lock(&iinfo->i_extent_cache_lock); | ||
86 | __udf_clear_extent_cache(inode); | ||
87 | spin_unlock(&iinfo->i_extent_cache_lock); | ||
88 | } | ||
89 | |||
90 | /* Return contents of extent cache */ | ||
91 | static int udf_read_extent_cache(struct inode *inode, loff_t bcount, | ||
92 | loff_t *lbcount, struct extent_position *pos) | ||
93 | { | ||
94 | struct udf_inode_info *iinfo = UDF_I(inode); | ||
95 | int ret = 0; | ||
96 | |||
97 | spin_lock(&iinfo->i_extent_cache_lock); | ||
98 | if ((iinfo->cached_extent.lstart <= bcount) && | ||
99 | (iinfo->cached_extent.lstart != -1)) { | ||
100 | /* Cache hit */ | ||
101 | *lbcount = iinfo->cached_extent.lstart; | ||
102 | memcpy(pos, &iinfo->cached_extent.epos, | ||
103 | sizeof(struct extent_position)); | ||
104 | if (pos->bh) | ||
105 | get_bh(pos->bh); | ||
106 | ret = 1; | ||
107 | } | ||
108 | spin_unlock(&iinfo->i_extent_cache_lock); | ||
109 | return ret; | ||
110 | } | ||
111 | |||
112 | /* Add extent to extent cache */ | ||
113 | static void udf_update_extent_cache(struct inode *inode, loff_t estart, | ||
114 | struct extent_position *pos, int next_epos) | ||
115 | { | ||
116 | struct udf_inode_info *iinfo = UDF_I(inode); | ||
117 | |||
118 | spin_lock(&iinfo->i_extent_cache_lock); | ||
119 | /* Invalidate previously cached extent */ | ||
120 | __udf_clear_extent_cache(inode); | ||
121 | if (pos->bh) | ||
122 | get_bh(pos->bh); | ||
123 | memcpy(&iinfo->cached_extent.epos, pos, | ||
124 | sizeof(struct extent_position)); | ||
125 | iinfo->cached_extent.lstart = estart; | ||
126 | if (next_epos) | ||
127 | switch (iinfo->i_alloc_type) { | ||
128 | case ICBTAG_FLAG_AD_SHORT: | ||
129 | iinfo->cached_extent.epos.offset -= | ||
130 | sizeof(struct short_ad); | ||
131 | break; | ||
132 | case ICBTAG_FLAG_AD_LONG: | ||
133 | iinfo->cached_extent.epos.offset -= | ||
134 | sizeof(struct long_ad); | ||
135 | } | ||
136 | spin_unlock(&iinfo->i_extent_cache_lock); | ||
137 | } | ||
70 | 138 | ||
71 | void udf_evict_inode(struct inode *inode) | 139 | void udf_evict_inode(struct inode *inode) |
72 | { | 140 | { |
@@ -90,6 +158,7 @@ void udf_evict_inode(struct inode *inode) | |||
90 | } | 158 | } |
91 | kfree(iinfo->i_ext.i_data); | 159 | kfree(iinfo->i_ext.i_data); |
92 | iinfo->i_ext.i_data = NULL; | 160 | iinfo->i_ext.i_data = NULL; |
161 | udf_clear_extent_cache(inode); | ||
93 | if (want_delete) { | 162 | if (want_delete) { |
94 | udf_free_inode(inode); | 163 | udf_free_inode(inode); |
95 | } | 164 | } |
@@ -105,6 +174,7 @@ static void udf_write_failed(struct address_space *mapping, loff_t to) | |||
105 | truncate_pagecache(inode, to, isize); | 174 | truncate_pagecache(inode, to, isize); |
106 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { | 175 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
107 | down_write(&iinfo->i_data_sem); | 176 | down_write(&iinfo->i_data_sem); |
177 | udf_clear_extent_cache(inode); | ||
108 | udf_truncate_extents(inode); | 178 | udf_truncate_extents(inode); |
109 | up_write(&iinfo->i_data_sem); | 179 | up_write(&iinfo->i_data_sem); |
110 | } | 180 | } |
@@ -372,7 +442,7 @@ static int udf_get_block(struct inode *inode, sector_t block, | |||
372 | iinfo->i_next_alloc_goal++; | 442 | iinfo->i_next_alloc_goal++; |
373 | } | 443 | } |
374 | 444 | ||
375 | 445 | udf_clear_extent_cache(inode); | |
376 | phys = inode_getblk(inode, block, &err, &new); | 446 | phys = inode_getblk(inode, block, &err, &new); |
377 | if (!phys) | 447 | if (!phys) |
378 | goto abort; | 448 | goto abort; |
@@ -1171,6 +1241,7 @@ set_size: | |||
1171 | } else { | 1241 | } else { |
1172 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { | 1242 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
1173 | down_write(&iinfo->i_data_sem); | 1243 | down_write(&iinfo->i_data_sem); |
1244 | udf_clear_extent_cache(inode); | ||
1174 | memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize, | 1245 | memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize, |
1175 | 0x00, bsize - newsize - | 1246 | 0x00, bsize - newsize - |
1176 | udf_file_entry_alloc_offset(inode)); | 1247 | udf_file_entry_alloc_offset(inode)); |
@@ -1184,6 +1255,7 @@ set_size: | |||
1184 | if (err) | 1255 | if (err) |
1185 | return err; | 1256 | return err; |
1186 | down_write(&iinfo->i_data_sem); | 1257 | down_write(&iinfo->i_data_sem); |
1258 | udf_clear_extent_cache(inode); | ||
1187 | truncate_setsize(inode, newsize); | 1259 | truncate_setsize(inode, newsize); |
1188 | udf_truncate_extents(inode); | 1260 | udf_truncate_extents(inode); |
1189 | up_write(&iinfo->i_data_sem); | 1261 | up_write(&iinfo->i_data_sem); |
@@ -2156,11 +2228,12 @@ int8_t inode_bmap(struct inode *inode, sector_t block, | |||
2156 | struct udf_inode_info *iinfo; | 2228 | struct udf_inode_info *iinfo; |
2157 | 2229 | ||
2158 | iinfo = UDF_I(inode); | 2230 | iinfo = UDF_I(inode); |
2159 | pos->offset = 0; | 2231 | if (!udf_read_extent_cache(inode, bcount, &lbcount, pos)) { |
2160 | pos->block = iinfo->i_location; | 2232 | pos->offset = 0; |
2161 | pos->bh = NULL; | 2233 | pos->block = iinfo->i_location; |
2234 | pos->bh = NULL; | ||
2235 | } | ||
2162 | *elen = 0; | 2236 | *elen = 0; |
2163 | |||
2164 | do { | 2237 | do { |
2165 | etype = udf_next_aext(inode, pos, eloc, elen, 1); | 2238 | etype = udf_next_aext(inode, pos, eloc, elen, 1); |
2166 | if (etype == -1) { | 2239 | if (etype == -1) { |
@@ -2170,7 +2243,8 @@ int8_t inode_bmap(struct inode *inode, sector_t block, | |||
2170 | } | 2243 | } |
2171 | lbcount += *elen; | 2244 | lbcount += *elen; |
2172 | } while (lbcount <= bcount); | 2245 | } while (lbcount <= bcount); |
2173 | 2246 | /* update extent cache */ | |
2247 | udf_update_extent_cache(inode, lbcount - *elen, pos, 1); | ||
2174 | *offset = (bcount + *elen - lbcount) >> blocksize_bits; | 2248 | *offset = (bcount + *elen - lbcount) >> blocksize_bits; |
2175 | 2249 | ||
2176 | return etype; | 2250 | return etype; |