diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-11-19 11:30:27 -0800 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-11-20 08:11:52 +1100 |
commit | 7596b27dbd8de7bcfa7a80b2756114b49bd5c018 (patch) | |
tree | d4dd95020a5a67529a317a38f4e995f90908c6c4 /fs/coda | |
parent | f3a5c547012a09f38f7c27b17a8e3150b69cd259 (diff) | |
download | linux-3.10-7596b27dbd8de7bcfa7a80b2756114b49bd5c018.tar.gz linux-3.10-7596b27dbd8de7bcfa7a80b2756114b49bd5c018.tar.bz2 linux-3.10-7596b27dbd8de7bcfa7a80b2756114b49bd5c018.zip |
coda: fix creds reference
Needs a header file for credentials struct:
linux-next-20081023/fs/coda/file.c:177: error: dereferencing pointer to incomplete type
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Jan Harkes <jaharkes@cs.cmu.edu>
Cc: David Howells <dhowells@redhat.com>
Cc: James Morris <jmorris@namei.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'fs/coda')
-rw-r--r-- | fs/coda/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/coda/file.c b/fs/coda/file.c index 5a876998549..466303db2df 100644 --- a/fs/coda/file.c +++ b/fs/coda/file.c @@ -13,6 +13,7 @@ #include <linux/file.h> #include <linux/fs.h> #include <linux/stat.h> +#include <linux/cred.h> #include <linux/errno.h> #include <linux/smp_lock.h> #include <linux/string.h> |