9pfs/9p.h: convert Doxygen -> kerneldoc format

API doc comments in QEMU are supposed to be in kerneldoc format, so
convert API doc comments from Doxygen format to kerneldoc format.

Based-on: <E1nPTwO-0006pl-Np@lizzy.crudebyte.com>
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Message-Id: <2b8f91de7bac3d3bc85d60eb08830a35a394be75.1646314856.git.qemu_oss@crudebyte.com>
This commit is contained in:
Christian Schoenebeck 2022-03-03 13:28:17 +01:00
parent 63ce31c35d
commit 39db334719
1 changed files with 6 additions and 6 deletions

View File

@ -100,8 +100,8 @@ typedef enum P9ProtoVersion {
V9FS_PROTO_2000L = 0x02, V9FS_PROTO_2000L = 0x02,
} P9ProtoVersion; } P9ProtoVersion;
/** /*
* @brief Minimum message size supported by this 9pfs server. * Minimum message size supported by this 9pfs server.
* *
* A client establishes a session by sending a Tversion request along with a * A client establishes a session by sending a Tversion request along with a
* 'msize' parameter which suggests the server a maximum message size ever to be * 'msize' parameter which suggests the server a maximum message size ever to be
@ -231,7 +231,7 @@ static inline void v9fs_readdir_init(P9ProtoVersion proto_version, V9fsDir *dir)
} }
} }
/** /*
* Type for 9p fs drivers' (a.k.a. 9p backends) result of readdir requests, * Type for 9p fs drivers' (a.k.a. 9p backends) result of readdir requests,
* which is a chained list of directory entries. * which is a chained list of directory entries.
*/ */
@ -289,8 +289,8 @@ typedef enum AffixType_t {
AffixType_Suffix, /* A.k.a. postfix. */ AffixType_Suffix, /* A.k.a. postfix. */
} AffixType_t; } AffixType_t;
/** /*
* @brief Unique affix of variable length. * Unique affix of variable length.
* *
* An affix is (currently) either a suffix or a prefix, which is either * An affix is (currently) either a suffix or a prefix, which is either
* going to be prepended (prefix) or appended (suffix) with some other * going to be prepended (prefix) or appended (suffix) with some other
@ -304,7 +304,7 @@ typedef struct VariLenAffix {
AffixType_t type; /* Whether this affix is a suffix or a prefix. */ AffixType_t type; /* Whether this affix is a suffix or a prefix. */
uint64_t value; /* Actual numerical value of this affix. */ uint64_t value; /* Actual numerical value of this affix. */
/* /*
* Lenght of the affix, that is how many (of the lowest) bits of @c value * Lenght of the affix, that is how many (of the lowest) bits of ``value``
* must be used for appending/prepending this affix to its final resulting, * must be used for appending/prepending this affix to its final resulting,
* unique number. * unique number.
*/ */