All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/hypfs: fix a typo in the name of a function
@ 2019-07-21 12:33 ` Christophe JAILLET
  0 siblings, 0 replies; 4+ messages in thread
From: Christophe JAILLET @ 2019-07-21 12:33 UTC (permalink / raw)
  To: heiko.carstens, borntraeger, schwidefsky, gregkh
  Cc: linux-s390, linux-kernel, kernel-janitors, Christophe JAILLET

Everything is about hypfs_..., except 'hpyfs_vm_create_guest()'
s/hpy/hyp/

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 arch/s390/hypfs/hypfs_vm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/s390/hypfs/hypfs_vm.c b/arch/s390/hypfs/hypfs_vm.c
index 42f2375c203e..e1fcc03159ef 100644
--- a/arch/s390/hypfs/hypfs_vm.c
+++ b/arch/s390/hypfs/hypfs_vm.c
@@ -118,7 +118,7 @@ do { \
 		return PTR_ERR(rc); \
 } while(0)
 
-static int hpyfs_vm_create_guest(struct dentry *systems_dir,
+static int hypfs_vm_create_guest(struct dentry *systems_dir,
 				 struct diag2fc_data *data)
 {
 	char guest_name[NAME_LEN + 1] = {};
@@ -219,7 +219,7 @@ int hypfs_vm_create_files(struct dentry *root)
 	}
 
 	for (i = 0; i < count; i++) {
-		rc = hpyfs_vm_create_guest(dir, &(data[i]));
+		rc = hypfs_vm_create_guest(dir, &(data[i]));
 		if (rc)
 			goto failed;
 	}
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] s390/hypfs: fix a typo in the name of a function
@ 2019-07-21 12:33 ` Christophe JAILLET
  0 siblings, 0 replies; 4+ messages in thread
From: Christophe JAILLET @ 2019-07-21 12:33 UTC (permalink / raw)
  To: heiko.carstens, borntraeger, schwidefsky, gregkh
  Cc: linux-s390, linux-kernel, kernel-janitors, Christophe JAILLET

Everything is about hypfs_..., except 'hpyfs_vm_create_guest()'
s/hpy/hyp/

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 arch/s390/hypfs/hypfs_vm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/s390/hypfs/hypfs_vm.c b/arch/s390/hypfs/hypfs_vm.c
index 42f2375c203e..e1fcc03159ef 100644
--- a/arch/s390/hypfs/hypfs_vm.c
+++ b/arch/s390/hypfs/hypfs_vm.c
@@ -118,7 +118,7 @@ do { \
 		return PTR_ERR(rc); \
 } while(0)
 
-static int hpyfs_vm_create_guest(struct dentry *systems_dir,
+static int hypfs_vm_create_guest(struct dentry *systems_dir,
 				 struct diag2fc_data *data)
 {
 	char guest_name[NAME_LEN + 1] = {};
@@ -219,7 +219,7 @@ int hypfs_vm_create_files(struct dentry *root)
 	}
 
 	for (i = 0; i < count; i++) {
-		rc = hpyfs_vm_create_guest(dir, &(data[i]));
+		rc = hypfs_vm_create_guest(dir, &(data[i]));
 		if (rc)
 			goto failed;
 	}
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] s390/hypfs: fix a typo in the name of a function
  2019-07-21 12:33 ` Christophe JAILLET
@ 2019-07-22  7:44   ` Christian Borntraeger
  -1 siblings, 0 replies; 4+ messages in thread
From: Christian Borntraeger @ 2019-07-22  7:44 UTC (permalink / raw)
  To: Christophe JAILLET, heiko.carstens, Vasily Gorbik, gregkh
  Cc: linux-s390, linux-kernel, kernel-janitors

thanks, applied.

On 21.07.19 14:33, Christophe JAILLET wrote:
> Everything is about hypfs_..., except 'hpyfs_vm_create_guest()'
> s/hpy/hyp/
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
>  arch/s390/hypfs/hypfs_vm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/s390/hypfs/hypfs_vm.c b/arch/s390/hypfs/hypfs_vm.c
> index 42f2375c203e..e1fcc03159ef 100644
> --- a/arch/s390/hypfs/hypfs_vm.c
> +++ b/arch/s390/hypfs/hypfs_vm.c
> @@ -118,7 +118,7 @@ do { \
>  		return PTR_ERR(rc); \
>  } while(0)
>  
> -static int hpyfs_vm_create_guest(struct dentry *systems_dir,
> +static int hypfs_vm_create_guest(struct dentry *systems_dir,
>  				 struct diag2fc_data *data)
>  {
>  	char guest_name[NAME_LEN + 1] = {};
> @@ -219,7 +219,7 @@ int hypfs_vm_create_files(struct dentry *root)
>  	}
>  
>  	for (i = 0; i < count; i++) {
> -		rc = hpyfs_vm_create_guest(dir, &(data[i]));
> +		rc = hypfs_vm_create_guest(dir, &(data[i]));
>  		if (rc)
>  			goto failed;
>  	}
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] s390/hypfs: fix a typo in the name of a function
@ 2019-07-22  7:44   ` Christian Borntraeger
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Borntraeger @ 2019-07-22  7:44 UTC (permalink / raw)
  To: Christophe JAILLET, heiko.carstens, Vasily Gorbik, gregkh
  Cc: linux-s390, linux-kernel, kernel-janitors

thanks, applied.

On 21.07.19 14:33, Christophe JAILLET wrote:
> Everything is about hypfs_..., except 'hpyfs_vm_create_guest()'
> s/hpy/hyp/
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
>  arch/s390/hypfs/hypfs_vm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/s390/hypfs/hypfs_vm.c b/arch/s390/hypfs/hypfs_vm.c
> index 42f2375c203e..e1fcc03159ef 100644
> --- a/arch/s390/hypfs/hypfs_vm.c
> +++ b/arch/s390/hypfs/hypfs_vm.c
> @@ -118,7 +118,7 @@ do { \
>  		return PTR_ERR(rc); \
>  } while(0)
>  
> -static int hpyfs_vm_create_guest(struct dentry *systems_dir,
> +static int hypfs_vm_create_guest(struct dentry *systems_dir,
>  				 struct diag2fc_data *data)
>  {
>  	char guest_name[NAME_LEN + 1] = {};
> @@ -219,7 +219,7 @@ int hypfs_vm_create_files(struct dentry *root)
>  	}
>  
>  	for (i = 0; i < count; i++) {
> -		rc = hpyfs_vm_create_guest(dir, &(data[i]));
> +		rc = hypfs_vm_create_guest(dir, &(data[i]));
>  		if (rc)
>  			goto failed;
>  	}
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-07-22  7:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-21 12:33 [PATCH] s390/hypfs: fix a typo in the name of a function Christophe JAILLET
2019-07-21 12:33 ` Christophe JAILLET
2019-07-22  7:44 ` Christian Borntraeger
2019-07-22  7:44   ` Christian Borntraeger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.