All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: fix a comment typo
@ 2015-09-30  3:36 Geliang Tang
  2015-09-30  3:36 ` [PATCH] PM/hibernate: " Geliang Tang
  2015-09-30  3:44 ` [PATCH] ceph: " Yan, Zheng
  0 siblings, 2 replies; 5+ messages in thread
From: Geliang Tang @ 2015-09-30  3:36 UTC (permalink / raw)
  To: Yan, Zheng, Sage Weil, Ilya Dryomov
  Cc: Geliang Tang, ceph-devel, linux-kernel

Just fix a typo in the code comment.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 fs/ceph/cache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ceph/cache.c b/fs/ceph/cache.c
index 834f9f3..a4766de 100644
--- a/fs/ceph/cache.c
+++ b/fs/ceph/cache.c
@@ -88,7 +88,7 @@ static uint16_t ceph_fscache_inode_get_key(const void *cookie_netfs_data,
 	const struct ceph_inode_info* ci = cookie_netfs_data;
 	uint16_t klen;
 
-	/* use ceph virtual inode (id + snaphot) */
+	/* use ceph virtual inode (id + snapshot) */
 	klen = sizeof(ci->i_vino);
 	if (klen > maxbuf)
 		return 0;
-- 
1.9.1



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

* [PATCH] PM/hibernate: fix a comment typo
  2015-09-30  3:36 [PATCH] ceph: fix a comment typo Geliang Tang
@ 2015-09-30  3:36 ` Geliang Tang
  2015-10-04 15:16   ` Pavel Machek
  2015-09-30  3:44 ` [PATCH] ceph: " Yan, Zheng
  1 sibling, 1 reply; 5+ messages in thread
From: Geliang Tang @ 2015-09-30  3:36 UTC (permalink / raw)
  To: Rafael J. Wysocki, Len Brown, Pavel Machek
  Cc: Geliang Tang, linux-pm, linux-kernel

Just fix a typo in a function name in kerneldoc comments.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 kernel/power/hibernate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 690f78f..b7342a2 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -733,7 +733,7 @@ int hibernate(void)
  * contents of memory is restored from the saved image.
  *
  * If this is successful, control reappears in the restored target kernel in
- * hibernation_snaphot() which returns to hibernate().  Otherwise, the routine
+ * hibernation_snapshot() which returns to hibernate().  Otherwise, the routine
  * attempts to recover gracefully and make the kernel return to the normal mode
  * of operation.
  */
-- 
1.9.1



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

* Re: [PATCH] ceph: fix a comment typo
  2015-09-30  3:36 [PATCH] ceph: fix a comment typo Geliang Tang
  2015-09-30  3:36 ` [PATCH] PM/hibernate: " Geliang Tang
@ 2015-09-30  3:44 ` Yan, Zheng
  1 sibling, 0 replies; 5+ messages in thread
From: Yan, Zheng @ 2015-09-30  3:44 UTC (permalink / raw)
  To: Geliang Tang; +Cc: Sage Weil, Ilya Dryomov, ceph-devel, linux-kernel


> On Sep 30, 2015, at 11:36, Geliang Tang <geliangtang@163.com> wrote:
> 
> Just fix a typo in the code comment.
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>
> ---
> fs/ceph/cache.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/ceph/cache.c b/fs/ceph/cache.c
> index 834f9f3..a4766de 100644
> --- a/fs/ceph/cache.c
> +++ b/fs/ceph/cache.c
> @@ -88,7 +88,7 @@ static uint16_t ceph_fscache_inode_get_key(const void *cookie_netfs_data,
> 	const struct ceph_inode_info* ci = cookie_netfs_data;
> 	uint16_t klen;
> 
> -	/* use ceph virtual inode (id + snaphot) */
> +	/* use ceph virtual inode (id + snapshot) */
> 	klen = sizeof(ci->i_vino);
> 	if (klen > maxbuf)
> 		return 0;

Applied, thank you.

Yan, Zheng


> -- 
> 1.9.1
> 
> 


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

* Re: [PATCH] PM/hibernate: fix a comment typo
  2015-09-30  3:36 ` [PATCH] PM/hibernate: " Geliang Tang
@ 2015-10-04 15:16   ` Pavel Machek
  2015-10-15  0:37     ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Machek @ 2015-10-04 15:16 UTC (permalink / raw)
  To: Geliang Tang; +Cc: Rafael J. Wysocki, Len Brown, linux-pm, linux-kernel

On Tue 2015-09-29 20:36:58, Geliang Tang wrote:
> Just fix a typo in a function name in kerneldoc comments.
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Acked-by: Pavel Machek <pavel@ucw.cz>

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* Re: [PATCH] PM/hibernate: fix a comment typo
  2015-10-04 15:16   ` Pavel Machek
@ 2015-10-15  0:37     ` Rafael J. Wysocki
  0 siblings, 0 replies; 5+ messages in thread
From: Rafael J. Wysocki @ 2015-10-15  0:37 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Geliang Tang, Len Brown, linux-pm, linux-kernel

On Sunday, October 04, 2015 05:16:27 PM Pavel Machek wrote:
> On Tue 2015-09-29 20:36:58, Geliang Tang wrote:
> > Just fix a typo in a function name in kerneldoc comments.
> > 
> > Signed-off-by: Geliang Tang <geliangtang@163.com>
> 
> Acked-by: Pavel Machek <pavel@ucw.cz>

Patch applied, thanks!

Rafael


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

end of thread, other threads:[~2015-10-15  0:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-30  3:36 [PATCH] ceph: fix a comment typo Geliang Tang
2015-09-30  3:36 ` [PATCH] PM/hibernate: " Geliang Tang
2015-10-04 15:16   ` Pavel Machek
2015-10-15  0:37     ` Rafael J. Wysocki
2015-09-30  3:44 ` [PATCH] ceph: " Yan, Zheng

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.