diff options
| author | Sascha Hauer <[email protected]> | 2023-11-08 06:05:06 +0000 |
|---|---|---|
| committer | Richard Weinberger <[email protected]> | 2024-01-05 15:35:25 +0000 |
| commit | 2ba5b48938d752d09d65d1a01c8ff0d2228c5ab5 (patch) | |
| tree | 7e080c2d8b63ab2e825e970ea060b66ff500b8a8 | |
| parent | ubifs: auth.c: fix kernel-doc function prototype warning (diff) | |
| download | kernel-2ba5b48938d752d09d65d1a01c8ff0d2228c5ab5.tar.gz kernel-2ba5b48938d752d09d65d1a01c8ff0d2228c5ab5.zip | |
ubifs: describe function parameters
With 16a26b20d2afd ("ubifs: authentication: Add hashes to index nodes")
insert_node() and insert_dent() got a new function parameter 'hash'. Add
a description for this new parameter.
Signed-off-by: Sascha Hauer <[email protected]>
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Reviewed-by: Zhihao Cheng <[email protected]>
Signed-off-by: Richard Weinberger <[email protected]>
| -rw-r--r-- | fs/ubifs/replay.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ubifs/replay.c b/fs/ubifs/replay.c index c59d47fe7939..17da28d6247a 100644 --- a/fs/ubifs/replay.c +++ b/fs/ubifs/replay.c @@ -365,6 +365,7 @@ static void destroy_replay_list(struct ubifs_info *c) * @lnum: node logical eraseblock number * @offs: node offset * @len: node length + * @hash: node hash * @key: node key * @sqnum: sequence number * @deletion: non-zero if this is a deletion @@ -417,6 +418,7 @@ static int insert_node(struct ubifs_info *c, int lnum, int offs, int len, * @lnum: node logical eraseblock number * @offs: node offset * @len: node length + * @hash: node hash * @key: node key * @name: directory entry name * @nlen: directory entry name length |
