[PATCH] fs: porting.rst: add bracket

Manuel Ebner posted 1 patch 3 weeks, 2 days ago
Documentation/filesystems/porting.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] fs: porting.rst: add bracket
Posted by Manuel Ebner 3 weeks, 2 days ago
Add missing '(' to function in prose.

Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
---
 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
-- 
2.54.0
Re: [PATCH] fs: porting.rst: add bracket
Posted by Jonathan Corbet 2 weeks, 4 days ago
Manuel Ebner <manuelebnerli@mailbox.org> writes:

> Add missing '(' to function in prose.
>
> Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
> ---
>  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
Re: [PATCH] fs: porting.rst: add bracket
Posted by Randy Dunlap 3 weeks, 2 days ago

On 9/2/26 7:54 AM, Manuel Ebner wrote:
> Add missing '(' to function in prose.
> 
> Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  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

-- 
~Randy