From: Tejun Heo Date: Fri, 17 Jan 2014 14:57:49 +0000 (-0500) Subject: kernfs: add struct dentry declaration in kernfs.h X-Git-Tag: v3.14-rc1~151^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=917f56caaabc215f9658006dad28a9665ec0ce19;p=kernel%2Fkernel-generic.git kernfs: add struct dentry declaration in kernfs.h Hello, Greg. Two misc fixes for kernfs. Thanks. ------- 8< ------- struct dentry is used in kernfs.h but its declaration was missing, leading to compilation errors unless its declaration gets pulled in in some other way. Add the declaration. Signed-off-by: Tejun Heo Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index d2c439d..5be9f02 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h @@ -18,6 +18,7 @@ #include struct file; +struct dentry; struct iattr; struct seq_file; struct vm_area_struct;