Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9df2f851
Commit
9df2f851
authored
Jun 06, 2010
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch bfs to ->evict_inode(), clean up
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
ac14a95b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
38 deletions
+32
-38
fs/bfs/inode.c
fs/bfs/inode.c
+32
-38
No files found.
fs/bfs/inode.c
View file @
9df2f851
...
@@ -99,6 +99,24 @@ struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
...
@@ -99,6 +99,24 @@ struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
return
ERR_PTR
(
-
EIO
);
return
ERR_PTR
(
-
EIO
);
}
}
static
struct
bfs_inode
*
find_inode
(
struct
super_block
*
sb
,
u16
ino
,
struct
buffer_head
**
p
)
{
if
((
ino
<
BFS_ROOT_INO
)
||
(
ino
>
BFS_SB
(
sb
)
->
si_lasti
))
{
printf
(
"Bad inode number %s:%08x
\n
"
,
sb
->
s_id
,
ino
);
return
ERR_PTR
(
-
EIO
);
}
ino
-=
BFS_ROOT_INO
;
*
p
=
sb_bread
(
sb
,
1
+
ino
/
BFS_INODES_PER_BLOCK
);
if
(
!*
p
)
{
printf
(
"Unable to read inode %s:%08x
\n
"
,
sb
->
s_id
,
ino
);
return
ERR_PTR
(
-
EIO
);
}
return
(
struct
bfs_inode
*
)(
*
p
)
->
b_data
+
ino
%
BFS_INODES_PER_BLOCK
;
}
static
int
bfs_write_inode
(
struct
inode
*
inode
,
struct
writeback_control
*
wbc
)
static
int
bfs_write_inode
(
struct
inode
*
inode
,
struct
writeback_control
*
wbc
)
{
{
struct
bfs_sb_info
*
info
=
BFS_SB
(
inode
->
i_sb
);
struct
bfs_sb_info
*
info
=
BFS_SB
(
inode
->
i_sb
);
...
@@ -106,28 +124,15 @@ static int bfs_write_inode(struct inode *inode, struct writeback_control *wbc)
...
@@ -106,28 +124,15 @@ static int bfs_write_inode(struct inode *inode, struct writeback_control *wbc)
unsigned
long
i_sblock
;
unsigned
long
i_sblock
;
struct
bfs_inode
*
di
;
struct
bfs_inode
*
di
;
struct
buffer_head
*
bh
;
struct
buffer_head
*
bh
;
int
block
,
off
;
int
err
=
0
;
int
err
=
0
;
dprintf
(
"ino=%08x
\n
"
,
ino
);
dprintf
(
"ino=%08x
\n
"
,
ino
);
if
((
ino
<
BFS_ROOT_INO
)
||
(
ino
>
BFS_SB
(
inode
->
i_sb
)
->
si_lasti
))
{
di
=
find_inode
(
inode
->
i_sb
,
ino
,
&
bh
);
printf
(
"Bad inode number %s:%08x
\n
"
,
inode
->
i_sb
->
s_id
,
ino
);
if
(
IS_ERR
(
di
))
return
-
EIO
;
return
PTR_ERR
(
di
);
}
mutex_lock
(
&
info
->
bfs_lock
);
mutex_lock
(
&
info
->
bfs_lock
);
block
=
(
ino
-
BFS_ROOT_INO
)
/
BFS_INODES_PER_BLOCK
+
1
;
bh
=
sb_bread
(
inode
->
i_sb
,
block
);
if
(
!
bh
)
{
printf
(
"Unable to read inode %s:%08x
\n
"
,
inode
->
i_sb
->
s_id
,
ino
);
mutex_unlock
(
&
info
->
bfs_lock
);
return
-
EIO
;
}
off
=
(
ino
-
BFS_ROOT_INO
)
%
BFS_INODES_PER_BLOCK
;
di
=
(
struct
bfs_inode
*
)
bh
->
b_data
+
off
;
if
(
ino
==
BFS_ROOT_INO
)
if
(
ino
==
BFS_ROOT_INO
)
di
->
i_vtype
=
cpu_to_le32
(
BFS_VDIR
);
di
->
i_vtype
=
cpu_to_le32
(
BFS_VDIR
);
...
@@ -158,12 +163,11 @@ static int bfs_write_inode(struct inode *inode, struct writeback_control *wbc)
...
@@ -158,12 +163,11 @@ static int bfs_write_inode(struct inode *inode, struct writeback_control *wbc)
return
err
;
return
err
;
}
}
static
void
bfs_
delete
_inode
(
struct
inode
*
inode
)
static
void
bfs_
evict
_inode
(
struct
inode
*
inode
)
{
{
unsigned
long
ino
=
inode
->
i_ino
;
unsigned
long
ino
=
inode
->
i_ino
;
struct
bfs_inode
*
di
;
struct
bfs_inode
*
di
;
struct
buffer_head
*
bh
;
struct
buffer_head
*
bh
;
int
block
,
off
;
struct
super_block
*
s
=
inode
->
i_sb
;
struct
super_block
*
s
=
inode
->
i_sb
;
struct
bfs_sb_info
*
info
=
BFS_SB
(
s
);
struct
bfs_sb_info
*
info
=
BFS_SB
(
s
);
struct
bfs_inode_info
*
bi
=
BFS_I
(
inode
);
struct
bfs_inode_info
*
bi
=
BFS_I
(
inode
);
...
@@ -171,28 +175,19 @@ static void bfs_delete_inode(struct inode *inode)
...
@@ -171,28 +175,19 @@ static void bfs_delete_inode(struct inode *inode)
dprintf
(
"ino=%08lx
\n
"
,
ino
);
dprintf
(
"ino=%08lx
\n
"
,
ino
);
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
invalidate_inode_buffers
(
inode
);
end_writeback
(
inode
);
if
((
ino
<
BFS_ROOT_INO
)
||
(
ino
>
info
->
si_lasti
))
{
if
(
inode
->
i_nlink
)
printf
(
"invalid ino=%08lx
\n
"
,
ino
);
return
;
return
;
}
inode
->
i_size
=
0
;
inode
->
i_atime
=
inode
->
i_mtime
=
inode
->
i_ctime
=
CURRENT_TIME_SEC
;
mutex_lock
(
&
info
->
bfs_lock
);
mark_inode_dirty
(
inode
);
block
=
(
ino
-
BFS_ROOT_INO
)
/
BFS_INODES_PER_BLOCK
+
1
;
di
=
find_inode
(
s
,
inode
->
i_ino
,
&
bh
);
bh
=
sb_bread
(
s
,
block
);
if
(
IS_ERR
(
di
))
if
(
!
bh
)
{
printf
(
"Unable to read inode %s:%08lx
\n
"
,
inode
->
i_sb
->
s_id
,
ino
);
mutex_unlock
(
&
info
->
bfs_lock
);
return
;
return
;
}
off
=
(
ino
-
BFS_ROOT_INO
)
%
BFS_INODES_PER_BLOCK
;
mutex_lock
(
&
info
->
bfs_lock
)
;
di
=
(
struct
bfs_inode
*
)
bh
->
b_data
+
off
;
/* clear on-disk inode */
memset
(
(
void
*
)
di
,
0
,
sizeof
(
struct
bfs_inode
));
memset
(
di
,
0
,
sizeof
(
struct
bfs_inode
));
mark_buffer_dirty
(
bh
);
mark_buffer_dirty
(
bh
);
brelse
(
bh
);
brelse
(
bh
);
...
@@ -214,7 +209,6 @@ static void bfs_delete_inode(struct inode *inode)
...
@@ -214,7 +209,6 @@ static void bfs_delete_inode(struct inode *inode)
mark_buffer_dirty
(
info
->
si_sbh
);
mark_buffer_dirty
(
info
->
si_sbh
);
}
}
mutex_unlock
(
&
info
->
bfs_lock
);
mutex_unlock
(
&
info
->
bfs_lock
);
clear_inode
(
inode
);
}
}
static
int
bfs_sync_fs
(
struct
super_block
*
sb
,
int
wait
)
static
int
bfs_sync_fs
(
struct
super_block
*
sb
,
int
wait
)
...
@@ -319,7 +313,7 @@ static const struct super_operations bfs_sops = {
...
@@ -319,7 +313,7 @@ static const struct super_operations bfs_sops = {
.
alloc_inode
=
bfs_alloc_inode
,
.
alloc_inode
=
bfs_alloc_inode
,
.
destroy_inode
=
bfs_destroy_inode
,
.
destroy_inode
=
bfs_destroy_inode
,
.
write_inode
=
bfs_write_inode
,
.
write_inode
=
bfs_write_inode
,
.
delete_inode
=
bfs_delete
_inode
,
.
evict_inode
=
bfs_evict
_inode
,
.
put_super
=
bfs_put_super
,
.
put_super
=
bfs_put_super
,
.
write_super
=
bfs_write_super
,
.
write_super
=
bfs_write_super
,
.
sync_fs
=
bfs_sync_fs
,
.
sync_fs
=
bfs_sync_fs
,
...
...
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