Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
Clea OS
bsp
nxp
linux-seco-imx
Commits
6266d465
Commit
6266d465
authored
7 years ago
by
Miklos Szeredi
Browse files
Options
Downloads
Patches
Plain Diff
ovl: don't fail copy-up if upper doesn't support xattr
Signed-off-by:
Miklos Szeredi
<
mszeredi@redhat.com
>
parent
82b749b2
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/overlayfs/copy_up.c
+5
-1
5 additions, 1 deletion
fs/overlayfs/copy_up.c
with
5 additions
and
1 deletion
fs/overlayfs/copy_up.c
+
5
−
1
View file @
6266d465
...
...
@@ -300,7 +300,11 @@ static int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
return
PTR_ERR
(
fh
);
}
err
=
ovl_do_setxattr
(
upper
,
OVL_XATTR_ORIGIN
,
fh
,
fh
?
fh
->
len
:
0
,
0
);
/*
* Do not fail when upper doesn't support xattrs.
*/
err
=
ovl_check_setxattr
(
dentry
,
upper
,
OVL_XATTR_ORIGIN
,
fh
,
fh
?
fh
->
len
:
0
,
0
);
kfree
(
fh
);
return
err
;
...
...
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