All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH][usercr] Add numeric hdr.type to ckptinfo
       [not found] ` <20100421022314.GA25133-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2010-04-21  2:18   ` Serge E. Hallyn
  2010-04-25 20:25   ` Oren Laadan
  1 sibling, 0 replies; 3+ messages in thread
From: Serge E. Hallyn @ 2010-04-21  2:18 UTC (permalink / raw)
  To: Sukadev Bhattiprolu; +Cc: Containers

Quoting Sukadev Bhattiprolu (sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org):
> 
> From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Date: Tue, 20 Apr 2010 19:08:08 -0700
> Subject: [PATCH 1/1] Add the numeric value of hdr.type
> 
> Debug messaages into dmesg rightly print only the numeric value of the
> CKPT_HDR type. ckptinfo prints the descriptive macro. But to correlate
> the two, one has to dive into the source to find the record type say 302
> in dmesg and then find CKPT_HDR_FILE_DESC in ckptinfo output. Would be
> easier if ckptinfo printed both the numeric value and descriptive macro.
> 
> Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>

Heh, great point.

Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>

> ---
>  ckptinfo.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/ckptinfo.c b/ckptinfo.c
> index 6190301..09b9db4 100644
> --- a/ckptinfo.c
> +++ b/ckptinfo.c
> @@ -182,8 +182,8 @@ static int image_read_obj(int fd, struct ckpt_hdr **hh)
>  	if (ret == 0)
>  		return 0;
>  
> -	VERBOSE("info: [@%lu] object %s len %d\n",
> -		__filepos, hdr_to_str(h.type), h.len);
> +	VERBOSE("info: [@%lu] object %3d %s len %d\n",
> +		__filepos, h.type, hdr_to_str(h.type), h.len);
>  
>  	p = malloc(h.len);
>  	if (!p) {
> -- 
> 1.6.6.1
> 
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers

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

* [PATCH][usercr] Add numeric hdr.type to ckptinfo
@ 2010-04-21  2:23 Sukadev Bhattiprolu
       [not found] ` <20100421022314.GA25133-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Sukadev Bhattiprolu @ 2010-04-21  2:23 UTC (permalink / raw)
  To: Oren Laadan; +Cc: Containers


From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date: Tue, 20 Apr 2010 19:08:08 -0700
Subject: [PATCH 1/1] Add the numeric value of hdr.type

Debug messaages into dmesg rightly print only the numeric value of the
CKPT_HDR type. ckptinfo prints the descriptive macro. But to correlate
the two, one has to dive into the source to find the record type say 302
in dmesg and then find CKPT_HDR_FILE_DESC in ckptinfo output. Would be
easier if ckptinfo printed both the numeric value and descriptive macro.

Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
---
 ckptinfo.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ckptinfo.c b/ckptinfo.c
index 6190301..09b9db4 100644
--- a/ckptinfo.c
+++ b/ckptinfo.c
@@ -182,8 +182,8 @@ static int image_read_obj(int fd, struct ckpt_hdr **hh)
 	if (ret == 0)
 		return 0;
 
-	VERBOSE("info: [@%lu] object %s len %d\n",
-		__filepos, hdr_to_str(h.type), h.len);
+	VERBOSE("info: [@%lu] object %3d %s len %d\n",
+		__filepos, h.type, hdr_to_str(h.type), h.len);
 
 	p = malloc(h.len);
 	if (!p) {
-- 
1.6.6.1

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

* Re: [PATCH][usercr] Add numeric hdr.type to ckptinfo
       [not found] ` <20100421022314.GA25133-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  2010-04-21  2:18   ` Serge E. Hallyn
@ 2010-04-25 20:25   ` Oren Laadan
  1 sibling, 0 replies; 3+ messages in thread
From: Oren Laadan @ 2010-04-25 20:25 UTC (permalink / raw)
  To: Sukadev Bhattiprolu; +Cc: Containers


Pulled, thanks.

Sukadev Bhattiprolu wrote:
> From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Date: Tue, 20 Apr 2010 19:08:08 -0700
> Subject: [PATCH 1/1] Add the numeric value of hdr.type
> 
> Debug messaages into dmesg rightly print only the numeric value of the
> CKPT_HDR type. ckptinfo prints the descriptive macro. But to correlate
> the two, one has to dive into the source to find the record type say 302
> in dmesg and then find CKPT_HDR_FILE_DESC in ckptinfo output. Would be
> easier if ckptinfo printed both the numeric value and descriptive macro.
> 
> Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> ---
>  ckptinfo.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/ckptinfo.c b/ckptinfo.c
> index 6190301..09b9db4 100644
> --- a/ckptinfo.c
> +++ b/ckptinfo.c
> @@ -182,8 +182,8 @@ static int image_read_obj(int fd, struct ckpt_hdr **hh)
>  	if (ret == 0)
>  		return 0;
>  
> -	VERBOSE("info: [@%lu] object %s len %d\n",
> -		__filepos, hdr_to_str(h.type), h.len);
> +	VERBOSE("info: [@%lu] object %3d %s len %d\n",
> +		__filepos, h.type, hdr_to_str(h.type), h.len);
>  
>  	p = malloc(h.len);
>  	if (!p) {

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

end of thread, other threads:[~2010-04-25 20:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-21  2:23 [PATCH][usercr] Add numeric hdr.type to ckptinfo Sukadev Bhattiprolu
     [not found] ` <20100421022314.GA25133-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-04-21  2:18   ` Serge E. Hallyn
2010-04-25 20:25   ` Oren Laadan

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.