Commit 77a73eec authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs pathwalk fix from Al Viro:
 "Dumb braino in legitimize_path()..."

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  fix a braino in legitimize_path()
parents a10c9c71 5bd73286
...@@ -610,7 +610,7 @@ static bool __legitimize_path(struct path *path, unsigned seq, unsigned mseq) ...@@ -610,7 +610,7 @@ static bool __legitimize_path(struct path *path, unsigned seq, unsigned mseq)
static inline bool legitimize_path(struct nameidata *nd, static inline bool legitimize_path(struct nameidata *nd,
struct path *path, unsigned seq) struct path *path, unsigned seq)
{ {
return __legitimize_path(path, nd->m_seq, seq); return __legitimize_path(path, seq, nd->m_seq);
} }
static bool legitimize_links(struct nameidata *nd) static bool legitimize_links(struct nameidata *nd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment