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
nexedi
linux
Commits
e72514e7
Commit
e72514e7
authored
May 22, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[readdir] convert hfsplus
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
002f8bec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
27 deletions
+23
-27
fs/hfsplus/dir.c
fs/hfsplus/dir.c
+23
-27
No files found.
fs/hfsplus/dir.c
View file @
e72514e7
...
...
@@ -121,9 +121,9 @@ static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry,
return
ERR_PTR
(
err
);
}
static
int
hfsplus_readdir
(
struct
file
*
fil
p
,
void
*
dirent
,
filldir_t
filldir
)
static
int
hfsplus_readdir
(
struct
file
*
fil
e
,
struct
dir_context
*
ctx
)
{
struct
inode
*
inode
=
file_inode
(
fil
p
);
struct
inode
*
inode
=
file_inode
(
fil
e
);
struct
super_block
*
sb
=
inode
->
i_sb
;
int
len
,
err
;
char
strbuf
[
HFSPLUS_MAX_STRLEN
+
1
];
...
...
@@ -132,7 +132,7 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
struct
hfsplus_readdir_data
*
rd
;
u16
type
;
if
(
fil
p
->
f_pos
>=
inode
->
i_size
)
if
(
fil
e
->
f_pos
>=
inode
->
i_size
)
return
0
;
err
=
hfs_find_init
(
HFSPLUS_SB
(
sb
)
->
cat_tree
,
&
fd
);
...
...
@@ -143,14 +143,13 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
if
(
err
)
goto
out
;
switch
((
u32
)
filp
->
f_pos
)
{
case
0
:
if
(
ctx
->
pos
==
0
)
{
/* This is completely artificial... */
if
(
filldir
(
dirent
,
"."
,
1
,
0
,
inode
->
i_ino
,
DT_DIR
))
if
(
!
dir_emit_dot
(
file
,
ctx
))
goto
out
;
filp
->
f_pos
++
;
/* fall through */
case
1
:
ctx
->
pos
=
1
;
}
if
(
ctx
->
pos
==
1
)
{
if
(
fd
.
entrylength
>
sizeof
(
entry
)
||
fd
.
entrylength
<
0
)
{
err
=
-
EIO
;
goto
out
;
...
...
@@ -168,19 +167,16 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
err
=
-
EIO
;
goto
out
;
}
if
(
filldir
(
dirent
,
".."
,
2
,
1
,
if
(
!
dir_emit
(
ctx
,
".."
,
2
,
be32_to_cpu
(
entry
.
thread
.
parentID
),
DT_DIR
))
goto
out
;
filp
->
f_pos
++
;
/* fall through */
default:
if
(
filp
->
f_pos
>=
inode
->
i_size
)
ctx
->
pos
=
2
;
}
if
(
ctx
->
pos
>=
inode
->
i_size
)
goto
out
;
err
=
hfs_brec_goto
(
&
fd
,
filp
->
f_
pos
-
1
);
err
=
hfs_brec_goto
(
&
fd
,
ctx
->
pos
-
1
);
if
(
err
)
goto
out
;
}
for
(;;)
{
if
(
be32_to_cpu
(
fd
.
key
->
cat
.
parent
)
!=
inode
->
i_ino
)
{
pr_err
(
"walked past end of dir
\n
"
);
...
...
@@ -211,7 +207,7 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
HFSPLUS_SB
(
sb
)
->
hidden_dir
->
i_ino
==
be32_to_cpu
(
entry
.
folder
.
id
))
goto
next
;
if
(
filldir
(
dirent
,
strbuf
,
len
,
filp
->
f_pos
,
if
(
!
dir_emit
(
ctx
,
strbuf
,
len
,
be32_to_cpu
(
entry
.
folder
.
id
),
DT_DIR
))
break
;
}
else
if
(
type
==
HFSPLUS_FILE
)
{
...
...
@@ -220,7 +216,7 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
err
=
-
EIO
;
goto
out
;
}
if
(
filldir
(
dirent
,
strbuf
,
len
,
filp
->
f_pos
,
if
(
!
dir_emit
(
ctx
,
strbuf
,
len
,
be32_to_cpu
(
entry
.
file
.
id
),
DT_REG
))
break
;
}
else
{
...
...
@@ -229,22 +225,22 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
goto
out
;
}
next:
filp
->
f_
pos
++
;
if
(
filp
->
f_
pos
>=
inode
->
i_size
)
ctx
->
pos
++
;
if
(
ctx
->
pos
>=
inode
->
i_size
)
goto
out
;
err
=
hfs_brec_goto
(
&
fd
,
1
);
if
(
err
)
goto
out
;
}
rd
=
fil
p
->
private_data
;
rd
=
fil
e
->
private_data
;
if
(
!
rd
)
{
rd
=
kmalloc
(
sizeof
(
struct
hfsplus_readdir_data
),
GFP_KERNEL
);
if
(
!
rd
)
{
err
=
-
ENOMEM
;
goto
out
;
}
fil
p
->
private_data
=
rd
;
rd
->
file
=
fil
p
;
fil
e
->
private_data
=
rd
;
rd
->
file
=
fil
e
;
list_add
(
&
rd
->
list
,
&
HFSPLUS_I
(
inode
)
->
open_dir_list
);
}
memcpy
(
&
rd
->
key
,
fd
.
key
,
sizeof
(
struct
hfsplus_cat_key
));
...
...
@@ -538,7 +534,7 @@ const struct inode_operations hfsplus_dir_inode_operations = {
const
struct
file_operations
hfsplus_dir_operations
=
{
.
fsync
=
hfsplus_file_fsync
,
.
read
=
generic_read_dir
,
.
readdir
=
hfsplus_readdir
,
.
iterate
=
hfsplus_readdir
,
.
unlocked_ioctl
=
hfsplus_ioctl
,
.
llseek
=
generic_file_llseek
,
.
release
=
hfsplus_dir_release
,
...
...
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