Re: [PATCH] fs: porting.rst: add bracket

From: Jonathan Corbet

Date: Mon Sep 07 2026 - 12:49:12 EST


Manuel Ebner <manuelebnerli@xxxxxxxxxxx> writes:

> Add missing '(' to function in prose.
>
> Signed-off-by: Manuel Ebner <manuelebnerli@xxxxxxxxxxx>
> ---
> Documentation/filesystems/porting.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/filesystems/porting.rst b/Documentation/filesystems/porting.rst
> index 60880eb0c..810657082 100644
> --- a/Documentation/filesystems/porting.rst
> +++ b/Documentation/filesystems/porting.rst
> @@ -673,7 +673,7 @@ watch out, since that shortcut is no longer valid.
> they used to - they just take it exclusive. However, ->lookup() may be
> called with parent locked shared. Its instances must not
>
> - * use d_instantiate) and d_rehash() separately - use d_add() or
> + * use d_instantiate() and d_rehash() separately - use d_add() or
> d_splice_alias() instead.
> * use d_rehash() alone - call d_add(new_dentry, NULL) instead.
> * in the unlikely case when (read-only) access to filesystem

Applied, thanks.

jon