Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gekkofs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hpc
gekkofs
Commits
8d65f46b
Commit
8d65f46b
authored
2 weeks ago
by
Ramon Nou
Browse files
Options
Downloads
Patches
Plain Diff
add linux dirent 64 bits
parent
09d71ad1
No related branches found
No related tags found
No related merge requests found
Pipeline
#5209
passed
1 week ago
Stage: lint
Stage: build
Stage: test
Stage: docs
Stage: report
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client/gkfs_functions.cpp
+7
-2
7 additions, 2 deletions
src/client/gkfs_functions.cpp
with
7 additions
and
2 deletions
src/client/gkfs_functions.cpp
+
7
−
2
View file @
8d65f46b
...
@@ -75,9 +75,15 @@ using namespace std;
...
@@ -75,9 +75,15 @@ using namespace std;
* kernel: fs/readdir.c.
* kernel: fs/readdir.c.
*/
*/
struct
linux_dirent
{
struct
linux_dirent
{
#ifndef __USE_FILE_OFFSET64
unsigned
long
d_ino
;
unsigned
long
d_ino
;
unsigned
long
d_off
;
unsigned
long
d_off
;
#else
uint64_t
d_ino
;
int64_t
d_off
;
#endif
unsigned
short
d_reclen
;
unsigned
short
d_reclen
;
unsigned
char
d_type
;
// Does it break dirents?
char
d_name
[
1
];
char
d_name
[
1
];
};
};
/*
/*
...
@@ -149,7 +155,6 @@ namespace gkfs::syscall {
...
@@ -149,7 +155,6 @@ namespace gkfs::syscall {
*/
*/
int
int
gkfs_open
(
const
std
::
string
&
path
,
mode_t
mode
,
int
flags
)
{
gkfs_open
(
const
std
::
string
&
path
,
mode_t
mode
,
int
flags
)
{
// metadata object filled during create or stat
// metadata object filled during create or stat
gkfs
::
metadata
::
Metadata
md
{};
gkfs
::
metadata
::
Metadata
md
{};
if
(
flags
&
O_CREAT
)
{
if
(
flags
&
O_CREAT
)
{
...
@@ -1499,7 +1504,7 @@ gkfs_getdents(unsigned int fd, struct linux_dirent* dirp, unsigned int count) {
...
@@ -1499,7 +1504,7 @@ gkfs_getdents(unsigned int fd, struct linux_dirent* dirp, unsigned int count) {
current_dirp
->
d_reclen
=
total_size
;
current_dirp
->
d_reclen
=
total_size
;
*
(
reinterpret_cast
<
char
*>
(
current_dirp
)
+
total_size
-
1
)
=
current_dirp
->
d_type
=
((
de
.
type
()
==
gkfs
::
filemap
::
FileType
::
regular
)
?
DT_REG
((
de
.
type
()
==
gkfs
::
filemap
::
FileType
::
regular
)
?
DT_REG
:
DT_DIR
);
:
DT_DIR
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment