diff options
author | Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> | 2011-05-08 14:43:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-09 12:04:23 -0400 |
commit | 0fe105aa29bed0994991462b58ef61646db0e459 (patch) | |
tree | 1aa775e43ff3181c67915a1522ab9ec8f1e62552 /fs/hpfs/namei.c | |
parent | 7d23ce36e3f52f9b83ac8da49296b73339c8b5b8 (diff) |
HPFS: Remove CR/LF conversion option
Remove CR/LF conversion option
It is unused anyway. It was used on 2.2 kernels or so.
Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hpfs/namei.c')
-rw-r--r-- | fs/hpfs/namei.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/hpfs/namei.c b/fs/hpfs/namei.c index 8c9f91537195..9c66f0ec8f8e 100644 --- a/fs/hpfs/namei.c +++ b/fs/hpfs/namei.c | |||
@@ -151,7 +151,6 @@ static int hpfs_create(struct inode *dir, struct dentry *dentry, int mode, struc | |||
151 | result->i_op = &hpfs_file_iops; | 151 | result->i_op = &hpfs_file_iops; |
152 | result->i_fop = &hpfs_file_ops; | 152 | result->i_fop = &hpfs_file_ops; |
153 | result->i_nlink = 1; | 153 | result->i_nlink = 1; |
154 | hpfs_decide_conv(result, name, len); | ||
155 | hpfs_i(result)->i_parent_dir = dir->i_ino; | 154 | hpfs_i(result)->i_parent_dir = dir->i_ino; |
156 | result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date); | 155 | result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date); |
157 | result->i_ctime.tv_nsec = 0; | 156 | result->i_ctime.tv_nsec = 0; |
@@ -616,8 +615,6 @@ static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
616 | mark_buffer_dirty(bh); | 615 | mark_buffer_dirty(bh); |
617 | brelse(bh); | 616 | brelse(bh); |
618 | } | 617 | } |
619 | hpfs_i(i)->i_conv = hpfs_sb(i->i_sb)->sb_conv; | ||
620 | hpfs_decide_conv(i, new_name, new_len); | ||
621 | end1: | 618 | end1: |
622 | hpfs_unlock(i->i_sb); | 619 | hpfs_unlock(i->i_sb); |
623 | return err; | 620 | return err; |