Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
System
KIOFuse
Commits
0d03568c
Commit
0d03568c
authored
Jun 28, 2020
by
Fabian Vogt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some updates and claritifications in DESIGN
parent
7ffb818b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
DESIGN
DESIGN
+4
-4
No files found.
DESIGN
View file @
0d03568c
...
...
@@ -175,9 +175,9 @@ void KIOFuseVFS::operation(fuse_req_t req, fuse_ino_t inode, ...)
if(!node) complain and return;
auto job = KIO::operation(that->remoteUrl(node), ...);
connect(job, &finished, [=]
(int error)
{
if(
error)
fuse_reply_err(req,
EIO
);
connect(job, &finished, [=] {
if(job->
error
()
)
fuse_reply_err(req,
kioErrorToFuseError(job->error())
);
else
{
that->doOperation(node);
...
...
@@ -199,7 +199,7 @@ Node attributes
For every node in the VFS, the full struct stat is already available when
inserting it into the tree. This happens when mounting a URL (uses KIO::stat)
and when requesting the children of a URL (using KIO::listDir with details).
The same is true of
a
symlink's target.
The same is true of
the
symlink's target
path
.
As a result, getattr and readlink are non-blocking if the node's attributes
have not timed out.
...
...
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