On Fri, Sep 28, 2018 at 05:42:29PM +0200, Miklos Szeredi wrote:
> @@ -103,6 +103,21 @@ struct fuse_inode {
>       /** List of writepage requestst (pending or sent) */
>       struct list_head writepages;
>  
> +     /** readdir cache */
> +     struct {
> +             /** true if fully cached */
> +             bool cached;

umm, you're using kernel-doc markers without formatting this comment as
kernel-doc.  See Documentation/doc-guide/kernel-doc.rst but I believe
you should be writing this as:

                /** @rdc.cached: true if fully cached */

or just use /* */ if you don't want kernel-doc.

Reply via email to