Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 641908 Details for
Bug 833535
autofs-5.0.6-19.fc17.x86_64 doesn't work with mock
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch - use simple_empty() for empty directory check
autofs4-use-simple_empty-for-empty-directory-check.patch (text/plain), 2.64 KB, created by
Ian Kent
on 2012-11-10 01:13:07 UTC
(
hide
)
Description:
Patch - use simple_empty() for empty directory check
Filename:
MIME Type:
Creator:
Ian Kent
Created:
2012-11-10 01:13:07 UTC
Size:
2.64 KB
patch
obsolete
>autofs4 - use simple_empty() for empty directory check > >From: Ian Kent <ikent@redhat.com> > > >--- > > fs/autofs4/autofs_i.h | 18 ++++++++++++++++++ > fs/autofs4/root.c | 16 ++++------------ > 2 files changed, 22 insertions(+), 12 deletions(-) > > >diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h >index 908e184..4c3f589 100644 >--- a/fs/autofs4/autofs_i.h >+++ b/fs/autofs4/autofs_i.h >@@ -301,6 +301,24 @@ static inline int simple_positive(struct dentry *dentry) > return dentry->d_inode && !d_unhashed(dentry); > } > >+static inline int __simple_empty(struct dentry *dentry) >+{ >+ struct dentry *child; >+ int ret = 0; >+ >+ list_for_each_entry(child, &dentry->d_subdirs, d_u.d_child) { >+ spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED); >+ if (simple_positive(child)) { >+ spin_unlock(&child->d_lock); >+ goto out; >+ } >+ spin_unlock(&child->d_lock); >+ } >+ ret = 1; >+out: >+ return ret; >+} >+ > static inline void __autofs4_add_expiring(struct dentry *dentry) > { > struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); >diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c >index 91b1165..f39bf4b 100644 >--- a/fs/autofs4/root.c >+++ b/fs/autofs4/root.c >@@ -124,13 +124,10 @@ static int autofs4_dir_open(struct inode *inode, struct file *file) > * it. > */ > spin_lock(&sbi->lookup_lock); >- spin_lock(&dentry->d_lock); >- if (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) { >- spin_unlock(&dentry->d_lock); >+ if (!d_mountpoint(dentry) && simple_empty(dentry)) { > spin_unlock(&sbi->lookup_lock); > return -ENOENT; > } >- spin_unlock(&dentry->d_lock); > spin_unlock(&sbi->lookup_lock); > > out: >@@ -382,12 +379,8 @@ static struct vfsmount *autofs4_d_automount(struct path *path) > if (have_submounts(dentry)) > goto done; > } else { >- spin_lock(&dentry->d_lock); >- if (!list_empty(&dentry->d_subdirs)) { >- spin_unlock(&dentry->d_lock); >+ if (!simple_empty(dentry)) > goto done; >- } >- spin_unlock(&dentry->d_lock); > } > ino->flags |= AUTOFS_INF_PENDING; > spin_unlock(&sbi->fs_lock); >@@ -413,8 +406,7 @@ done: > * the follow. > */ > spin_lock(&dentry->d_lock); >- if ((!d_mountpoint(dentry) && >- !list_empty(&dentry->d_subdirs)) || >+ if ((!d_mountpoint(dentry) && !__simple_empty(dentry)) || > (dentry->d_inode && S_ISLNK(dentry->d_inode->i_mode))) > __managed_dentry_clear_automount(dentry); > spin_unlock(&dentry->d_lock); >@@ -673,7 +665,7 @@ static int autofs4_dir_rmdir(struct inode *dir, struct dentry *dentry) > > spin_lock(&sbi->lookup_lock); > spin_lock(&dentry->d_lock); >- if (!list_empty(&dentry->d_subdirs)) { >+ if (!__simple_empty(dentry)) { > spin_unlock(&dentry->d_lock); > spin_unlock(&sbi->lookup_lock); > return -ENOTEMPTY;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 833535
:
593444
|
609140
|
610823
|
611990
|
625260
|
636456
|
641908
|
647703
|
647705
|
649476
|
672268
|
672270