Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Bricked
flo
Commits
845a2cc0
Commit
845a2cc0
authored
14 years ago
by
Al Viro
Browse files
Options
Download
Email Patches
Plain Diff
convert reiserfs to ->evict_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
bd555975
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
11 deletions
+12
-11
fs/reiserfs/inode.c
fs/reiserfs/inode.c
+10
-3
fs/reiserfs/super.c
fs/reiserfs/super.c
+1
-7
include/linux/reiserfs_fs.h
include/linux/reiserfs_fs.h
+1
-1
No files found.
fs/reiserfs/inode.c
View file @
845a2cc0
...
...
@@ -25,7 +25,7 @@ int reiserfs_commit_write(struct file *f, struct page *page,
int
reiserfs_prepare_write
(
struct
file
*
f
,
struct
page
*
page
,
unsigned
from
,
unsigned
to
);
void
reiserfs_
delete
_inode
(
struct
inode
*
inode
)
void
reiserfs_
evict
_inode
(
struct
inode
*
inode
)
{
/* We need blocks for transaction + (user+group) quota update (possibly delete) */
int
jbegin_count
=
...
...
@@ -35,10 +35,12 @@ void reiserfs_delete_inode(struct inode *inode)
int
depth
;
int
err
;
if
(
!
is_bad_inode
(
inode
))
if
(
!
inode
->
i_nlink
&&
!
is_bad_inode
(
inode
))
dquot_initialize
(
inode
);
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
if
(
inode
->
i_nlink
)
goto
no_delete
;
depth
=
reiserfs_write_lock_once
(
inode
->
i_sb
);
...
...
@@ -77,9 +79,14 @@ void reiserfs_delete_inode(struct inode *inode)
;
}
out:
clear_inode
(
inode
);
/* note this must go after the journal_end to prevent deadlock */
end_writeback
(
inode
);
/* note this must go after the journal_end to prevent deadlock */
dquot_drop
(
inode
);
inode
->
i_blocks
=
0
;
reiserfs_write_unlock_once
(
inode
->
i_sb
,
depth
);
no_delete:
end_writeback
(
inode
);
dquot_drop
(
inode
);
}
static
void
_make_cpu_key
(
struct
cpu_key
*
key
,
int
version
,
__u32
dirid
,
...
...
This diff is collapsed.
Click to expand it.
fs/reiserfs/super.c
View file @
845a2cc0
...
...
@@ -591,11 +591,6 @@ out:
reiserfs_write_unlock_once
(
inode
->
i_sb
,
lock_depth
);
}
static
void
reiserfs_clear_inode
(
struct
inode
*
inode
)
{
dquot_drop
(
inode
);
}
#ifdef CONFIG_QUOTA
static
ssize_t
reiserfs_quota_write
(
struct
super_block
*
,
int
,
const
char
*
,
size_t
,
loff_t
);
...
...
@@ -608,8 +603,7 @@ static const struct super_operations reiserfs_sops = {
.
destroy_inode
=
reiserfs_destroy_inode
,
.
write_inode
=
reiserfs_write_inode
,
.
dirty_inode
=
reiserfs_dirty_inode
,
.
clear_inode
=
reiserfs_clear_inode
,
.
delete_inode
=
reiserfs_delete_inode
,
.
evict_inode
=
reiserfs_evict_inode
,
.
put_super
=
reiserfs_put_super
,
.
write_super
=
reiserfs_write_super
,
.
sync_fs
=
reiserfs_sync_fs
,
...
...
This diff is collapsed.
Click to expand it.
include/linux/reiserfs_fs.h
View file @
845a2cc0
...
...
@@ -2033,7 +2033,7 @@ void reiserfs_read_locked_inode(struct inode *inode,
struct
reiserfs_iget_args
*
args
);
int
reiserfs_find_actor
(
struct
inode
*
inode
,
void
*
p
);
int
reiserfs_init_locked_inode
(
struct
inode
*
inode
,
void
*
p
);
void
reiserfs_
delete
_inode
(
struct
inode
*
inode
);
void
reiserfs_
evict
_inode
(
struct
inode
*
inode
);
int
reiserfs_write_inode
(
struct
inode
*
inode
,
struct
writeback_control
*
wbc
);
int
reiserfs_get_block
(
struct
inode
*
inode
,
sector_t
block
,
struct
buffer_head
*
bh_result
,
int
create
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment