Re: [PATCH 4/9] fuse: allow caching readdir

From: Matthew Wilcox
Date: Fri Sep 28 2018 - 12:42:07 EST


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.