From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Serge E. Hallyn" Subject: Re: [ckpt_msg][PATCH 1/1] c/r: Fix trivial bug in ckpt_msg macro Date: Mon, 22 Mar 2010 08:47:07 -0500 Message-ID: <20100322134707.GA3744@us.ibm.com> References: <1269213886-22543-1-git-send-email-christofferdall@christofferdall.dk> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1269213886-22543-1-git-send-email-christofferdall-77OGu6e99YhyO3AAkE1OcX9LOBIZ5rWg@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: Christoffer Dall Cc: containers List-Id: containers.vger.kernel.org Quoting Christoffer Dall (christofferdall-77OGu6e99YhyO3AAkE1OcX9LOBIZ5rWg@public.gmane.org): > Fixing the typo "ftm->fmt" in checkpoint/restart log macro. > > Signed-off-by: Christoffer Dall Acked-by: Serge Hallyn thanks, -serge > --- > include/linux/checkpoint.h | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h > index 792b523..4f25992 100644 > --- a/include/linux/checkpoint.h > +++ b/include/linux/checkpoint.h > @@ -443,7 +443,7 @@ extern void _ckpt_msg_complete(struct ckpt_ctx *ctx); > * Must be called with ckpt_msg_lock held. > */ > #define _ckpt_msg(ctx, fmt, args...) do { \ > - _do_ckpt_msg(ctx, 0, ftm, ##args); \ > + _do_ckpt_msg(ctx, 0, fmt, ##args); \ > } while (0) > > /* > @@ -456,7 +456,7 @@ extern void _ckpt_msg_complete(struct ckpt_ctx *ctx); > * Must not be called under spinlock. > */ > #define ckpt_msg(ctx, fmt, args...) do { \ > - do_ckpt_msg(ctx, 0, ftm, ##args); \ > + do_ckpt_msg(ctx, 0, fmt, ##args); \ > } while (0) > > /* > -- > 1.5.6.5 > > _______________________________________________ > Containers mailing list > Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org > https://lists.linux-foundation.org/mailman/listinfo/containers