You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'for-linus-1' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs updates from Al Viro:
"In this pile: pathname resolution rewrite.
- recursion in link_path_walk() is gone.
- nesting limits on symlinks are gone (the only limit remaining is
that the total amount of symlinks is no more than 40, no matter how
nested).
- "fast" (inline) symlinks are handled without leaving rcuwalk mode.
- stack footprint (independent of the nesting) is below kilobyte now,
about on par with what it used to be with one level of nested
symlinks and ~2.8 times lower than it used to be in the worst case.
- struct nameidata is entirely private to fs/namei.c now (not even
opaque pointers are being passed around).
- ->follow_link() and ->put_link() calling conventions had been
changed; all in-tree filesystems converted, out-of-tree should be
able to follow reasonably easily.
For out-of-tree conversions, see Documentation/filesystems/porting
for details (and in-tree filesystems for examples of conversion).
That has sat in -next since mid-May, seems to survive all testing
without regressions and merges clean with v4.1"
* 'for-linus-1' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (131 commits)
turn user_{path_at,path,lpath,path_dir}() into static inlines
namei: move saved_nd pointer into struct nameidata
inline user_path_create()
inline user_path_parent()
namei: trim do_last() arguments
namei: stash dfd and name into nameidata
namei: fold path_cleanup() into terminate_walk()
namei: saner calling conventions for filename_parentat()
namei: saner calling conventions for filename_create()
namei: shift nameidata down into filename_parentat()
namei: make filename_lookup() reject ERR_PTR() passed as name
namei: shift nameidata inside filename_lookup()
namei: move putname() call into filename_lookup()
namei: pass the struct path to store the result down into path_lookupat()
namei: uninline set_root{,_rcu}()
namei: be careful with mountpoint crossings in follow_dotdot_rcu()
Documentation: remove outdated information from automount-support.txt
get rid of assorted nameidata-related debris
lustre: kill unused helper
lustre: kill unused macro (LOOKUP_CONTINUE)
...
This commit is contained in:
@@ -189,22 +189,7 @@ static inline int ll_quota_off(struct super_block *sb, int off, int remount)
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* After 3.1, kernel's nameidata.intent.open.flags is different
|
||||
* with lustre's lookup_intent.it_flags, as lustre's it_flags'
|
||||
* lower bits equal to FMODE_xxx while kernel doesn't transliterate
|
||||
* lower bits of nameidata.intent.open.flags to FMODE_xxx.
|
||||
* */
|
||||
#include <linux/version.h>
|
||||
static inline int ll_namei_to_lookup_intent_flag(int flag)
|
||||
{
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0)
|
||||
flag = (flag & ~O_ACCMODE) | OPEN_FMODE(flag);
|
||||
#endif
|
||||
return flag;
|
||||
}
|
||||
|
||||
#include <linux/fs.h>
|
||||
|
||||
# define ll_umode_t umode_t
|
||||
|
||||
@@ -57,12 +57,6 @@
|
||||
#define VM_FAULT_RETRY 0
|
||||
#endif
|
||||
|
||||
/* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
|
||||
* seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
|
||||
#ifndef LOOKUP_CONTINUE
|
||||
#define LOOKUP_CONTINUE LOOKUP_PARENT
|
||||
#endif
|
||||
|
||||
/** Only used on client-side for indicating the tail of dir hash/offset. */
|
||||
#define LL_DIR_END_OFF 0x7fffffffffffffffULL
|
||||
#define LL_DIR_END_OFF_32BIT 0x7fffffffUL
|
||||
|
||||
@@ -118,7 +118,7 @@ failed:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void *ll_follow_link(struct dentry *dentry, struct nameidata *nd)
|
||||
static const char *ll_follow_link(struct dentry *dentry, void **cookie)
|
||||
{
|
||||
struct inode *inode = d_inode(dentry);
|
||||
struct ptlrpc_request *request = NULL;
|
||||
@@ -126,32 +126,22 @@ static void *ll_follow_link(struct dentry *dentry, struct nameidata *nd)
|
||||
char *symname = NULL;
|
||||
|
||||
CDEBUG(D_VFSTRACE, "VFS Op\n");
|
||||
/* Limit the recursive symlink depth to 5 instead of default
|
||||
* 8 links when kernel has 4k stack to prevent stack overflow.
|
||||
* For 8k stacks we need to limit it to 7 for local servers. */
|
||||
if (THREAD_SIZE < 8192 && current->link_count >= 6) {
|
||||
rc = -ELOOP;
|
||||
} else if (THREAD_SIZE == 8192 && current->link_count >= 8) {
|
||||
rc = -ELOOP;
|
||||
} else {
|
||||
ll_inode_size_lock(inode);
|
||||
rc = ll_readlink_internal(inode, &request, &symname);
|
||||
ll_inode_size_unlock(inode);
|
||||
}
|
||||
ll_inode_size_lock(inode);
|
||||
rc = ll_readlink_internal(inode, &request, &symname);
|
||||
ll_inode_size_unlock(inode);
|
||||
if (rc) {
|
||||
ptlrpc_req_finished(request);
|
||||
request = NULL;
|
||||
symname = ERR_PTR(rc);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
nd_set_link(nd, symname);
|
||||
/* symname may contain a pointer to the request message buffer,
|
||||
* we delay request releasing until ll_put_link then.
|
||||
*/
|
||||
return request;
|
||||
*cookie = request;
|
||||
return symname;
|
||||
}
|
||||
|
||||
static void ll_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
|
||||
static void ll_put_link(struct inode *unused, void *cookie)
|
||||
{
|
||||
ptlrpc_req_finished(cookie);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user