Hi,
On 10/15/25 10:42 PM, Tzung-Bi Shih wrote:
> +/**
> + * fs_revocable_replace() - Replace the file operations to be
> revocable-aware.
> + *
> + * Should be used only from ->open() instances.
> + */
> +int fs_revocable_replace(struct file *filp,
> + const struct fs_revocable_operations *frops,
> + struct revocable_provider **rps, size_t num_rps)
> +{
Please add the function parameters to the kernel-doc comment to avoid
kernel-doc warnings. E.g.:
* @filp: foo description
* @frops: bar description
* @rps: baz description
* @num_rps: number of @rps entries
--
~Randy