diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-07 09:41:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-07 09:41:20 -0800 |
commit | d287b8750e47c1702dab0e37ac11012bb751ece0 (patch) | |
tree | f3663e3e612b2e25be1d261acd39dda6f36ca08e /include | |
parent | 36a25de23359940b7713fc40cbcbb046b3797511 (diff) | |
parent | 08b60f8438879a84246d7debded31c9cb7aea6e4 (diff) | |
download | linux-3.10-d287b8750e47c1702dab0e37ac11012bb751ece0.tar.gz linux-3.10-d287b8750e47c1702dab0e37ac11012bb751ece0.tar.bz2 linux-3.10-d287b8750e47c1702dab0e37ac11012bb751ece0.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull namei.h missing include fix from Al Viro.
The new use of ESTALE in namei.h can cause compile failures on ARM with
certain configurations due to lack of errno.h.
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
namei.h: include errno.h
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/namei.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/namei.h b/include/linux/namei.h index e998c030061..5a5ff57ceed 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h @@ -2,6 +2,7 @@ #define _LINUX_NAMEI_H #include <linux/dcache.h> +#include <linux/errno.h> #include <linux/linkage.h> #include <linux/path.h> |