Age | Commit message (Expand) | Author | Files | Lines |
2020-04-06 | fix a braino in legitimize_path() |  Al Viro | 1 | -1/+1 |
2020-04-02 | lookup_open(): don't bother with fallbacks to lookup+create |  Al Viro | 1 | -25/+9 |
2020-04-02 | atomic_open(): no need to pass struct open_flags anymore |  Al Viro | 1 | -2/+1 |
2020-04-02 | open_last_lookups(): move complete_walk() into do_open() |  Al Viro | 1 | -10/+8 |
2020-04-02 | open_last_lookups(): lift O_EXCL|O_CREAT handling into do_open() |  Al Viro | 1 | -5/+2 |
2020-04-02 | open_last_lookups(): don't abuse complete_walk() when all we want is unlazy |  Al Viro | 1 | -9/+5 |
2020-04-02 | open_last_lookups(): consolidate fsnotify_create() calls |  Al Viro | 1 | -5/+2 |
2020-04-02 | take post-lookup part of do_last() out of loop |  Al Viro | 1 | -12/+9 |
2020-04-02 | link_path_walk(): sample parent's i_uid and i_mode for the last component |  Al Viro | 1 | -10/+7 |
2020-04-02 | __nd_alloc_stack(): make it return bool |  Al Viro | 1 | -27/+18 |
2020-04-02 | reserve_stack(): switch to __nd_alloc_stack() |  Al Viro | 1 | -11/+8 |
2020-04-02 | pick_link(): take reserving space on stack into a new helper |  Al Viro | 1 | -21/+25 |
2020-04-02 | pick_link(): more straightforward handling of allocation failures |  Al Viro | 1 | -8/+7 |
2020-04-02 | fold path_to_nameidata() into its only remaining caller |  Al Viro | 1 | -13/+6 |
2020-04-02 | pick_link(): pass it struct path already with normal refcounting rules |  Al Viro | 1 | -6/+6 |
2020-04-02 | fs/namei.c: kill follow_mount() |  Al Viro | 1 | -20/+2 |
2020-04-02 | non-RCU analogue of the previous commit |  Al Viro | 1 | -17/+39 |
2020-04-02 | helper for mount rootwards traversal |  Al Viro | 1 | -16/+24 |
2020-04-02 | follow_dotdot(): be lazy about changing nd->path |  Al Viro | 1 | -5/+13 |
2020-04-02 | follow_dotdot_rcu(): be lazy about changing nd->path |  Al Viro | 1 | -15/+20 |
2020-04-02 | follow_dotdot{,_rcu}(): massage loops |  Al Viro | 1 | -32/+45 |
2020-04-02 | lift all calls of step_into() out of follow_dotdot/follow_dotdot_rcu |  Al Viro | 1 | -34/+37 |
2020-03-13 | follow_dotdot{,_rcu}(): switch to use of step_into() |  Al Viro | 1 | -24/+7 |
2020-03-13 | handle_dots(), follow_dotdot{,_rcu}(): preparation to switch to step_into() |  Al Viro | 1 | -27/+25 |
2020-03-13 | move handle_dots(), follow_dotdot() and follow_dotdot_rcu() past step_into() |  Al Viro | 1 | -130/+130 |
2020-03-13 | follow_dotdot{,_rcu}(): lift LOOKUP_BENEATH checks out of loop |  Al Viro | 1 | -10/+10 |
2020-03-13 | follow_dotdot{,_rcu}(): lift switching nd->path to parent out of loop |  Al Viro | 1 | -8/+12 |
2020-03-13 | expand path_parent_directory() in its callers |  Al Viro | 1 | -18/+11 |
2020-03-13 | path_parent_directory(): leave changing path->dentry to callers |  Al Viro | 1 | -15/+19 |
2020-03-13 | path_connected(): pass mount and dentry separately |  Al Viro | 1 | -7/+5 |
2020-03-13 | split the lookup-related parts of do_last() into a separate helper |  Al Viro | 1 | -22/+29 |
2020-03-13 | do_last(): rejoin the common path even earlier in FMODE_{OPENED,CREATED} case |  Al Viro | 1 | -10/+4 |
2020-03-13 | do_last(): simplify the liveness analysis past finish_open_created |  Al Viro | 1 | -17/+11 |
2020-03-13 | do_last(): rejoing the common path earlier in FMODE_{OPENED,CREATED} case |  Al Viro | 1 | -13/+8 |
2020-03-13 | do_last(): don't bother with keeping got_write in FMODE_OPENED case |  Al Viro | 1 | -20/+11 |
2020-03-13 | do_last(): merge the may_open() calls |  Al Viro | 1 | -7/+3 |
2020-03-13 | atomic_open(): lift the call of may_open() into do_last() |  Al Viro | 1 | -15/+11 |
2020-03-13 | atomic_open(): return the right dentry in FMODE_OPENED case |  Al Viro | 1 | -1/+5 |
2020-03-13 | new helper: traverse_mounts() |  Al Viro | 1 | -105/+72 |
2020-03-13 | massage __follow_mount_rcu() a bit |  Al Viro | 1 | -35/+35 |
2020-03-13 | namei: have link_path_walk() maintain LOOKUP_PARENT |  Al Viro | 1 | -11/+6 |
2020-03-13 | link_path_walk(): simplify stack handling |  Al Viro | 1 | -9/+5 |
2020-03-13 | pick_link(): check for WALK_TRAILING, not LOOKUP_PARENT |  Al Viro | 1 | -5/+5 |
2020-03-13 | namei: invert the meaning of WALK_FOLLOW |  Al Viro | 1 | -6/+6 |
2020-03-13 | sanitize handling of nd->last_type, kill LAST_BIND |  Al Viro | 1 | -2/+1 |
2020-03-13 | finally fold get_link() into pick_link() |  Al Viro | 1 | -74/+61 |
2020-03-13 | merging pick_link() with get_link(), part 6 |  Al Viro | 1 | -8/+5 |
2020-03-13 | merging pick_link() with get_link(), part 5 |  Al Viro | 1 | -25/+18 |
2020-03-13 | merging pick_link() with get_link(), part 4 |  Al Viro | 1 | -33/+26 |
2020-03-13 | merging pick_link() with get_link(), part 3 |  Al Viro | 1 | -9/+9 |