aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2016-01-08 16:00:31 -0500
committerTheodore Ts'o <tytso@mit.edu>2016-01-08 16:00:31 -0500
commit56a04915df4e85b34b1c1613c64b87dd2283c26a (patch)
tree918970d90b7a276a503acd6fa9a3304f590e632c
parentdb7730e3091a52c2fcd8fcc952b964d88998e675 (diff)
ext4 crypto: simplify interfaces to directory entry insert functions
A number of functions include ext4_add_dx_entry, make_indexed_dir, etc. are being passed a dentry even though the only thing they use is the containing parent. We can shrink the code size slightly by making this replacement. This will also be useful in cases where we don't have a dentry as the argument to the directory entry insert functions. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--fs/ext4/ext4.h3
-rw-r--r--fs/ext4/inline.c10
-rw-r--r--fs/ext4/namei.c15
3 files changed, 11 insertions, 17 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
index 1e20fa94fcf6..f82da361a823 100644
--- a/fs/ext4/ext4.h
+++ b/fs/ext4/ext4.h
@@ -3004,8 +3004,7 @@ extern int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
3004 struct page *page); 3004 struct page *page);
3005extern int ext4_try_add_inline_entry(handle_t *handle, 3005extern int ext4_try_add_inline_entry(handle_t *handle,
3006 struct ext4_filename *fname, 3006 struct ext4_filename *fname,
3007 struct dentry *dentry, 3007 struct inode *dir, struct inode *inode);
3008 struct inode *inode);
3009extern int ext4_try_create_inline_dir(handle_t *handle, 3008extern int ext4_try_create_inline_dir(handle_t *handle,
3010 struct inode *parent, 3009 struct inode *parent,
3011 struct inode *inode); 3010 struct inode *inode);
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index d884989cc83d..dfe3b9bafc0d 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -995,12 +995,11 @@ void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
995 */ 995 */
996static int ext4_add_dirent_to_inline(handle_t *handle, 996static int ext4_add_dirent_to_inline(handle_t *handle,
997 struct ext4_filename *fname, 997 struct ext4_filename *fname,
998 struct dentry *dentry, 998 struct inode *dir,
999 struct inode *inode, 999 struct inode *inode,
1000 struct ext4_iloc *iloc, 1000 struct ext4_iloc *iloc,
1001 void *inline_start, int inline_size) 1001 void *inline_start, int inline_size)
1002{ 1002{
1003 struct inode *dir = d_inode(dentry->d_parent);
1004 int err; 1003 int err;
1005 struct ext4_dir_entry_2 *de; 1004 struct ext4_dir_entry_2 *de;
1006 1005
@@ -1245,12 +1244,11 @@ out:
1245 * the new created block. 1244 * the new created block.
1246 */ 1245 */
1247int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname, 1246int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
1248 struct dentry *dentry, struct inode *inode) 1247 struct inode *dir, struct inode *inode)
1249{ 1248{
1250 int ret, inline_size; 1249 int ret, inline_size;
1251 void *inline_start; 1250 void *inline_start;
1252 struct ext4_iloc iloc; 1251 struct ext4_iloc iloc;
1253 struct inode *dir = d_inode(dentry->d_parent);
1254 1252
1255 ret = ext4_get_inode_loc(dir, &iloc); 1253 ret = ext4_get_inode_loc(dir, &iloc);
1256 if (ret) 1254 if (ret)
@@ -1264,7 +1262,7 @@ int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
1264 EXT4_INLINE_DOTDOT_SIZE; 1262 EXT4_INLINE_DOTDOT_SIZE;
1265 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE; 1263 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1266 1264
1267 ret = ext4_add_dirent_to_inline(handle, fname, dentry, inode, &iloc, 1265 ret = ext4_add_dirent_to_inline(handle, fname, dir, inode, &iloc,
1268 inline_start, inline_size); 1266 inline_start, inline_size);
1269 if (ret != -ENOSPC) 1267 if (ret != -ENOSPC)
1270 goto out; 1268 goto out;
@@ -1285,7 +1283,7 @@ int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
1285 if (inline_size) { 1283 if (inline_size) {
1286 inline_start = ext4_get_inline_xattr_pos(dir, &iloc); 1284 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1287 1285
1288 ret = ext4_add_dirent_to_inline(handle, fname, dentry, 1286 ret = ext4_add_dirent_to_inline(handle, fname, dir,
1289 inode, &iloc, inline_start, 1287 inode, &iloc, inline_start,
1290 inline_size); 1288 inline_size);
1291 1289
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index a969ab39f302..06c3afcbfac8 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -273,7 +273,7 @@ static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
273 struct ext4_filename *fname, 273 struct ext4_filename *fname,
274 struct ext4_dir_entry_2 **res_dir); 274 struct ext4_dir_entry_2 **res_dir);
275static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname, 275static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
276 struct dentry *dentry, struct inode *inode); 276 struct inode *dir, struct inode *inode);
277 277
278/* checksumming functions */ 278/* checksumming functions */
279void initialize_dirent_tail(struct ext4_dir_entry_tail *t, 279void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
@@ -1928,10 +1928,9 @@ static int add_dirent_to_buf(handle_t *handle, struct ext4_filename *fname,
1928 * directory, and adds the dentry to the indexed directory. 1928 * directory, and adds the dentry to the indexed directory.
1929 */ 1929 */
1930static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname, 1930static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname,
1931 struct dentry *dentry, 1931 struct inode *dir,
1932 struct inode *inode, struct buffer_head *bh) 1932 struct inode *inode, struct buffer_head *bh)
1933{ 1933{
1934 struct inode *dir = d_inode(dentry->d_parent);
1935 struct buffer_head *bh2; 1934 struct buffer_head *bh2;
1936 struct dx_root *root; 1935 struct dx_root *root;
1937 struct dx_frame frames[2], *frame; 1936 struct dx_frame frames[2], *frame;
@@ -2086,8 +2085,7 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
2086 return retval; 2085 return retval;
2087 2086
2088 if (ext4_has_inline_data(dir)) { 2087 if (ext4_has_inline_data(dir)) {
2089 retval = ext4_try_add_inline_entry(handle, &fname, 2088 retval = ext4_try_add_inline_entry(handle, &fname, dir, inode);
2090 dentry, inode);
2091 if (retval < 0) 2089 if (retval < 0)
2092 goto out; 2090 goto out;
2093 if (retval == 1) { 2091 if (retval == 1) {
@@ -2097,7 +2095,7 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
2097 } 2095 }
2098 2096
2099 if (is_dx(dir)) { 2097 if (is_dx(dir)) {
2100 retval = ext4_dx_add_entry(handle, &fname, dentry, inode); 2098 retval = ext4_dx_add_entry(handle, &fname, dir, inode);
2101 if (!retval || (retval != ERR_BAD_DX_DIR)) 2099 if (!retval || (retval != ERR_BAD_DX_DIR))
2102 goto out; 2100 goto out;
2103 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX); 2101 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
@@ -2119,7 +2117,7 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
2119 2117
2120 if (blocks == 1 && !dx_fallback && 2118 if (blocks == 1 && !dx_fallback &&
2121 ext4_has_feature_dir_index(sb)) { 2119 ext4_has_feature_dir_index(sb)) {
2122 retval = make_indexed_dir(handle, &fname, dentry, 2120 retval = make_indexed_dir(handle, &fname, dir,
2123 inode, bh); 2121 inode, bh);
2124 bh = NULL; /* make_indexed_dir releases bh */ 2122 bh = NULL; /* make_indexed_dir releases bh */
2125 goto out; 2123 goto out;
@@ -2154,12 +2152,11 @@ out:
2154 * Returns 0 for success, or a negative error value 2152 * Returns 0 for success, or a negative error value
2155 */ 2153 */
2156static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname, 2154static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
2157 struct dentry *dentry, struct inode *inode) 2155 struct inode *dir, struct inode *inode)
2158{ 2156{
2159 struct dx_frame frames[2], *frame; 2157 struct dx_frame frames[2], *frame;
2160 struct dx_entry *entries, *at; 2158 struct dx_entry *entries, *at;
2161 struct buffer_head *bh; 2159 struct buffer_head *bh;
2162 struct inode *dir = d_inode(dentry->d_parent);
2163 struct super_block *sb = dir->i_sb; 2160 struct super_block *sb = dir->i_sb;
2164 struct ext4_dir_entry_2 *de; 2161 struct ext4_dir_entry_2 *de;
2165 int err; 2162 int err;