Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
linux-yocto
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
Mirrors
git.yoctoproject.org
linux-yocto
Commits
57e9463c
Commit
57e9463c
authored
7 months ago
by
Bruce Ashfield
Browse files
Options
Downloads
Plain Diff
Merge branch 'v5.10/standard/base' into v5.10/standard/qemuarm64
parents
91d3ad4a
03a85a51
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/aufs/vfsub.c
+8
-2
8 additions, 2 deletions
fs/aufs/vfsub.c
with
8 additions
and
2 deletions
fs/aufs/vfsub.c
+
8
−
2
View file @
57e9463c
...
...
@@ -400,6 +400,7 @@ int vfsub_rename(struct inode *src_dir, struct dentry *src_dentry,
.
mnt
=
path
->
mnt
};
struct
dentry
*
d
;
struct
renamedata
rd
;
IMustLock
(
dir
);
IMustLock
(
src_dir
);
...
...
@@ -413,8 +414,13 @@ int vfsub_rename(struct inode *src_dir, struct dentry *src_dentry,
goto
out
;
lockdep_off
();
err
=
vfs_rename
(
src_dir
,
src_dentry
,
dir
,
path
->
dentry
,
delegated_inode
,
flags
);
rd
.
old_dir
=
src_dir
;
rd
.
old_dentry
=
src_dentry
;
rd
.
new_dir
=
dir
;
rd
.
new_dentry
=
path
->
dentry
;
rd
.
delegated_inode
=
delegated_inode
;
rd
.
flags
=
flags
;
err
=
vfs_rename
(
&
rd
);
lockdep_on
();
if
(
!
err
)
{
int
did
;
...
...
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