linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] Fix a few typos around the word "destroy"
@ 2014-11-24 17:00 SF Markus Elfring
  2014-11-24 17:08 ` [PATCH 1/6] isci: Fix a typo for " SF Markus Elfring
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:00 UTC (permalink / raw)
  To: kernel-janitors; +Cc: trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 17:34:23 +0100
Subject: [PATCH 0/6] Fix a few typos around the word "destroy"

The word "destroy" was mistyped in some files.

Markus Elfring (6):
  isci: Fix a typo for the word "destroy"
  SCSI-libfc: Fix typos for the word "destroy"
  video: fbdev-MMP: Fix typos for the word "destroy"
  f2fs: Fix typos for the word "destroy" in jump labels
  video: fbdev-MMP: Fix a typo for the word "destroyed"
  Documentation-SCSI: Fix a typo for the word "destroy"

 Documentation/scsi/ChangeLog.lpfc | 2 +-
 drivers/scsi/isci/remote_device.c | 2 +-
 drivers/scsi/libfc/fc_fcp.c       | 4 ++--
 drivers/video/fbdev/mmp/core.c    | 6 +++---
 fs/f2fs/node.c                    | 8 ++++----
 5 files changed, 11 insertions(+), 11 deletions(-)

-- 
2.1.3


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

* [PATCH 1/6] isci: Fix a typo for the word "destroy"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
@ 2014-11-24 17:08 ` SF Markus Elfring
  2014-11-24 17:15 ` [PATCH 2/6] SCSI-libfc: Fix typos " SF Markus Elfring
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:08 UTC (permalink / raw)
  To: Artur Paszkiewicz, Dave Jiang, James E. J. Bottomley, linux-scsi,
	intel-linux-scu
  Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 15:35:48 +0100

A word was corrected in the description for
the sci_remote_device_destruct() function.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/scsi/isci/remote_device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/isci/remote_device.c b/drivers/scsi/isci/remote_device.c
index cc51f38..f54bb98 100644
--- a/drivers/scsi/isci/remote_device.c
+++ b/drivers/scsi/isci/remote_device.c
@@ -1008,7 +1008,7 @@ static void sci_remote_device_initial_state_enter(struct sci_base_state_machine
  * successfully destructed or if some failure occurred. enum sci_status This value
  * is returned if the device is successfully destructed.
  * SCI_FAILURE_INVALID_REMOTE_DEVICE This value is returned if the supplied
- * device isn't valid (e.g. it's already been destoryed, the handle isn't
+ * device isn't valid (e.g. it's already been destroyed, the handle isn't
  * valid, etc.).
  */
 static enum sci_status sci_remote_device_destruct(struct isci_remote_device *idev)
-- 
2.1.3


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

* [PATCH 2/6] SCSI-libfc: Fix typos for the word "destroy"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
  2014-11-24 17:08 ` [PATCH 1/6] isci: Fix a typo for " SF Markus Elfring
@ 2014-11-24 17:15 ` SF Markus Elfring
  2014-11-24 17:19 ` [PATCH 3/6] video: fbdev-MMP: " SF Markus Elfring
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:15 UTC (permalink / raw)
  To: James E. J. Bottomley, Robert Love, linux-scsi, fcoe-devel
  Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 15:40:41 +0100

Identifiers were corrected in descriptions for the functions
fc_fcp_pkt_destroy() and fc_fcp_destroy().

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/scsi/libfc/fc_fcp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/libfc/fc_fcp.c b/drivers/scsi/libfc/fc_fcp.c
index 1d7e76e..5649fc9 100644
--- a/drivers/scsi/libfc/fc_fcp.c
+++ b/drivers/scsi/libfc/fc_fcp.c
@@ -191,7 +191,7 @@ static void fc_fcp_pkt_hold(struct fc_fcp_pkt *fsp)
 }
 
 /**
- * fc_fcp_pkt_destory() - Release hold on a fcp_pkt
+ * fc_fcp_pkt_destroy() - Release hold on a fcp_pkt
  * @seq: The sequence that the FCP packet is on (required by destructor API)
  * @fsp: The FCP packet to be released
  *
@@ -2216,7 +2216,7 @@ int fc_change_queue_type(struct scsi_device *sdev, int tag_type)
 EXPORT_SYMBOL(fc_change_queue_type);
 
 /**
- * fc_fcp_destory() - Tear down the FCP layer for a given local port
+ * fc_fcp_destroy() - Tear down the FCP layer for a given local port
  * @lport: The local port that no longer needs the FCP layer
  */
 void fc_fcp_destroy(struct fc_lport *lport)
-- 
2.1.3


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

* [PATCH 3/6] video: fbdev-MMP: Fix typos for the word "destroy"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
  2014-11-24 17:08 ` [PATCH 1/6] isci: Fix a typo for " SF Markus Elfring
  2014-11-24 17:15 ` [PATCH 2/6] SCSI-libfc: Fix typos " SF Markus Elfring
@ 2014-11-24 17:19 ` SF Markus Elfring
  2014-11-25 10:55   ` Tomi Valkeinen
  2014-11-24 17:24 ` [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels SF Markus Elfring
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:19 UTC (permalink / raw)
  To: Jean-Christophe Plagniol-Villard, Tomi Valkeinen, linux-fbdev
  Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 15:50:15 +0100

Two mistyped words were corrected in the description for
the mmp_unregister_path() function.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/video/fbdev/mmp/core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/mmp/core.c b/drivers/video/fbdev/mmp/core.c
index b563b92..43ed576 100644
--- a/drivers/video/fbdev/mmp/core.c
+++ b/drivers/video/fbdev/mmp/core.c
@@ -223,10 +223,10 @@ struct mmp_path *mmp_register_path(struct mmp_path_info *info)
 EXPORT_SYMBOL_GPL(mmp_register_path);
 
 /*
- * mmp_unregister_path - unregister and destory path
+ * mmp_unregister_path - unregister and destroy path
  * @p: path to be destoried.
  *
- * this function registers path and destorys it.
+ * this function registers path and destroys it.
  */
 void mmp_unregister_path(struct mmp_path *path)
 {
-- 
2.1.3


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

* [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
                   ` (2 preceding siblings ...)
  2014-11-24 17:19 ` [PATCH 3/6] video: fbdev-MMP: " SF Markus Elfring
@ 2014-11-24 17:24 ` SF Markus Elfring
  2014-11-24 21:42   ` Jaegeuk Kim
  2014-11-24 17:28 ` [PATCH 5/6] video: fbdev-MMP: Fix a typo for the word "destroyed" SF Markus Elfring
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:24 UTC (permalink / raw)
  To: Changman Lee, Jaegeuk Kim; +Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 15:52:00 +0100

Two jump labels were adjusted in the implementation of the
create_node_manager_caches() function because these identifiers
contained typos.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 fs/f2fs/node.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index 4537819..74f44fe 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -2057,17 +2057,17 @@ int __init create_node_manager_caches(void)
 	free_nid_slab = f2fs_kmem_cache_create("free_nid",
 			sizeof(struct free_nid));
 	if (!free_nid_slab)
-		goto destory_nat_entry;
+		goto destroy_nat_entry;
 
 	nat_entry_set_slab = f2fs_kmem_cache_create("nat_entry_set",
 			sizeof(struct nat_entry_set));
 	if (!nat_entry_set_slab)
-		goto destory_free_nid;
+		goto destroy_free_nid;
 	return 0;
 
-destory_free_nid:
+destroy_free_nid:
 	kmem_cache_destroy(free_nid_slab);
-destory_nat_entry:
+destroy_nat_entry:
 	kmem_cache_destroy(nat_entry_slab);
 fail:
 	return -ENOMEM;
-- 
2.1.3


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

* [PATCH 5/6] video: fbdev-MMP: Fix a typo for the word "destroyed"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
                   ` (3 preceding siblings ...)
  2014-11-24 17:24 ` [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels SF Markus Elfring
@ 2014-11-24 17:28 ` SF Markus Elfring
  2014-11-24 17:31 ` [PATCH 6/6] Documentation-SCSI: Fix a typo for the word "destroy" SF Markus Elfring
  2014-11-25  2:21 ` [PATCH 0/6] Fix a few typos around " Randy Dunlap
  6 siblings, 0 replies; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:28 UTC (permalink / raw)
  To: Jean-Christophe Plagniol-Villard, Tomi Valkeinen, linux-fbdev
  Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 15:55:23 +0100

A word was corrected in the description for a parameter of
the mmp_unregister_path() function.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/video/fbdev/mmp/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/mmp/core.c b/drivers/video/fbdev/mmp/core.c
index 43ed576..a0f4960 100644
--- a/drivers/video/fbdev/mmp/core.c
+++ b/drivers/video/fbdev/mmp/core.c
@@ -224,7 +224,7 @@ EXPORT_SYMBOL_GPL(mmp_register_path);
 
 /*
  * mmp_unregister_path - unregister and destroy path
- * @p: path to be destoried.
+ * @p: path to be destroyed.
  *
  * this function registers path and destroys it.
  */
-- 
2.1.3


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

* [PATCH 6/6] Documentation-SCSI: Fix a typo for the word "destroy"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
                   ` (4 preceding siblings ...)
  2014-11-24 17:28 ` [PATCH 5/6] video: fbdev-MMP: Fix a typo for the word "destroyed" SF Markus Elfring
@ 2014-11-24 17:31 ` SF Markus Elfring
  2014-11-25  2:21 ` [PATCH 0/6] Fix a few typos around " Randy Dunlap
  6 siblings, 0 replies; 10+ messages in thread
From: SF Markus Elfring @ 2014-11-24 17:31 UTC (permalink / raw)
  To: Jiri Kosina, linux-doc; +Cc: kernel-janitors, trivial, LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 24 Nov 2014 17:25:30 +0100

An identifier was corrected in a change log entry because it contained a typo.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 Documentation/scsi/ChangeLog.lpfc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/scsi/ChangeLog.lpfc b/Documentation/scsi/ChangeLog.lpfc
index 2f6d595..24d6508 100644
--- a/Documentation/scsi/ChangeLog.lpfc
+++ b/Documentation/scsi/ChangeLog.lpfc
@@ -1263,7 +1263,7 @@ Changes from 20040515 to 20040526
 	* Switch from using internal bus/id/lun to similar data from
 	  scsi_device structure.
 	* Eliminate one-line function lpfc_find_target()
-	* Added slave_alloc, slave_destory
+	* Added slave_alloc, slave_destroy
 	* lpfc_scsi_cmd_start can now acquire lun pointer from
 	  scsi_device->hostdata, which is setup in slave_alloc.
 	* Eliminate unnecessary checking on every cmd just to see if we
-- 
2.1.3


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

* Re: [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels
  2014-11-24 17:24 ` [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels SF Markus Elfring
@ 2014-11-24 21:42   ` Jaegeuk Kim
  0 siblings, 0 replies; 10+ messages in thread
From: Jaegeuk Kim @ 2014-11-24 21:42 UTC (permalink / raw)
  To: SF Markus Elfring; +Cc: Changman Lee, kernel-janitors, trivial, LKML

Hi Markus,

Merged.
Thank you for the patch.

On Mon, Nov 24, 2014 at 06:24:22PM +0100, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Mon, 24 Nov 2014 15:52:00 +0100
> 
> Two jump labels were adjusted in the implementation of the
> create_node_manager_caches() function because these identifiers
> contained typos.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
> ---
>  fs/f2fs/node.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
> index 4537819..74f44fe 100644
> --- a/fs/f2fs/node.c
> +++ b/fs/f2fs/node.c
> @@ -2057,17 +2057,17 @@ int __init create_node_manager_caches(void)
>  	free_nid_slab = f2fs_kmem_cache_create("free_nid",
>  			sizeof(struct free_nid));
>  	if (!free_nid_slab)
> -		goto destory_nat_entry;
> +		goto destroy_nat_entry;
>  
>  	nat_entry_set_slab = f2fs_kmem_cache_create("nat_entry_set",
>  			sizeof(struct nat_entry_set));
>  	if (!nat_entry_set_slab)
> -		goto destory_free_nid;
> +		goto destroy_free_nid;
>  	return 0;
>  
> -destory_free_nid:
> +destroy_free_nid:
>  	kmem_cache_destroy(free_nid_slab);
> -destory_nat_entry:
> +destroy_nat_entry:
>  	kmem_cache_destroy(nat_entry_slab);
>  fail:
>  	return -ENOMEM;
> -- 
> 2.1.3
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 0/6] Fix a few typos around the word "destroy"
  2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
                   ` (5 preceding siblings ...)
  2014-11-24 17:31 ` [PATCH 6/6] Documentation-SCSI: Fix a typo for the word "destroy" SF Markus Elfring
@ 2014-11-25  2:21 ` Randy Dunlap
  6 siblings, 0 replies; 10+ messages in thread
From: Randy Dunlap @ 2014-11-25  2:21 UTC (permalink / raw)
  To: SF Markus Elfring; +Cc: kernel-janitors, trivial, LKML

On 11/24/2014 09:00 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Mon, 24 Nov 2014 17:34:23 +0100
> Subject: [PATCH 0/6] Fix a few typos around the word "destroy"
>
> The word "destroy" was mistyped in some files.

For all 6 patches;
Acked-by: Randy Dunlap <rdunlap@infradead.org>

However, in th3 future, please document each patch as described in
Documentation/SubmittingPatches:

   Describe your changes in imperative mood, e.g. "make xyzzy do frotz"
   instead of "[This patch] makes xyzzy do frotz" or "[I] changed xyzzy
   to do frotz", as if you are giving orders to the codebase to change
   its behaviour.

E.g., instead of:

A word was corrected in the description for a parameter of
the mmp_unregister_path() function.

Use:

Correct the description of a parameter of the mmp_unregister_path()
function.

Thanks.

>
> Markus Elfring (6):
>    isci: Fix a typo for the word "destroy"
>    SCSI-libfc: Fix typos for the word "destroy"
>    video: fbdev-MMP: Fix typos for the word "destroy"
>    f2fs: Fix typos for the word "destroy" in jump labels
>    video: fbdev-MMP: Fix a typo for the word "destroyed"
>    Documentation-SCSI: Fix a typo for the word "destroy"
>
>   Documentation/scsi/ChangeLog.lpfc | 2 +-
>   drivers/scsi/isci/remote_device.c | 2 +-
>   drivers/scsi/libfc/fc_fcp.c       | 4 ++--
>   drivers/video/fbdev/mmp/core.c    | 6 +++---
>   fs/f2fs/node.c                    | 8 ++++----
>   5 files changed, 11 insertions(+), 11 deletions(-)
>


-- 
~Randy

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

* Re: [PATCH 3/6] video: fbdev-MMP: Fix typos for the word "destroy"
  2014-11-24 17:19 ` [PATCH 3/6] video: fbdev-MMP: " SF Markus Elfring
@ 2014-11-25 10:55   ` Tomi Valkeinen
  0 siblings, 0 replies; 10+ messages in thread
From: Tomi Valkeinen @ 2014-11-25 10:55 UTC (permalink / raw)
  To: SF Markus Elfring
  Cc: Jean-Christophe Plagniol-Villard, linux-fbdev, kernel-janitors,
	trivial, LKML

[-- Attachment #1: Type: text/plain, Size: 1156 bytes --]

On 24/11/14 19:19, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Mon, 24 Nov 2014 15:50:15 +0100
> 
> Two mistyped words were corrected in the description for
> the mmp_unregister_path() function.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
> ---
>  drivers/video/fbdev/mmp/core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/video/fbdev/mmp/core.c b/drivers/video/fbdev/mmp/core.c
> index b563b92..43ed576 100644
> --- a/drivers/video/fbdev/mmp/core.c
> +++ b/drivers/video/fbdev/mmp/core.c
> @@ -223,10 +223,10 @@ struct mmp_path *mmp_register_path(struct mmp_path_info *info)
>  EXPORT_SYMBOL_GPL(mmp_register_path);
>  
>  /*
> - * mmp_unregister_path - unregister and destory path
> + * mmp_unregister_path - unregister and destroy path
>   * @p: path to be destoried.
>   *
> - * this function registers path and destorys it.
> + * this function registers path and destroys it.
>   */
>  void mmp_unregister_path(struct mmp_path *path)
>  {
> 

Thanks, applied this and the patch 5/6 to fbdev tree.

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2014-11-25 10:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-24 17:00 [PATCH 0/6] Fix a few typos around the word "destroy" SF Markus Elfring
2014-11-24 17:08 ` [PATCH 1/6] isci: Fix a typo for " SF Markus Elfring
2014-11-24 17:15 ` [PATCH 2/6] SCSI-libfc: Fix typos " SF Markus Elfring
2014-11-24 17:19 ` [PATCH 3/6] video: fbdev-MMP: " SF Markus Elfring
2014-11-25 10:55   ` Tomi Valkeinen
2014-11-24 17:24 ` [PATCH 4/6] f2fs: Fix typos for the word "destroy" in jump labels SF Markus Elfring
2014-11-24 21:42   ` Jaegeuk Kim
2014-11-24 17:28 ` [PATCH 5/6] video: fbdev-MMP: Fix a typo for the word "destroyed" SF Markus Elfring
2014-11-24 17:31 ` [PATCH 6/6] Documentation-SCSI: Fix a typo for the word "destroy" SF Markus Elfring
2014-11-25  2:21 ` [PATCH 0/6] Fix a few typos around " Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).