Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755061AbYKDPdS (ORCPT ); Tue, 4 Nov 2008 10:33:18 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753966AbYKDPdD (ORCPT ); Tue, 4 Nov 2008 10:33:03 -0500 Received: from jalapeno.cc.columbia.edu ([128.59.29.5]:54640 "EHLO jalapeno.cc.columbia.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753087AbYKDPdB (ORCPT ); Tue, 4 Nov 2008 10:33:01 -0500 Message-ID: <49106B0A.8010205@cs.columbia.edu> Date: Tue, 04 Nov 2008 10:32:26 -0500 From: Oren Laadan Organization: Columbia University User-Agent: Thunderbird 2.0.0.16 (X11/20080707) MIME-Version: 1.0 To: Masahiko Takahashi CC: Linus Torvalds , linux-api@vger.kernel.org, containers@lists.linux-foundation.org, linux-kernel@vger.kernel.org, Dave Hansen , linux-mm@kvack.org, Alexander Viro , "H. Peter Anvin" , Thomas Gleixner , Ingo Molnar Subject: Re: [RFC v8][PATCH 05/12] x86 support for checkpoint/restart References: <1225374675-22850-1-git-send-email-orenl@cs.columbia.edu> <1225374675-22850-6-git-send-email-orenl@cs.columbia.edu> <1225791016.5940.33.camel@noir.spf.cl.nec.co.jp> In-Reply-To: <1225791016.5940.33.camel@noir.spf.cl.nec.co.jp> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-No-Spam-Score: Local Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1564 Lines: 60 Masahiko Takahashi wrote: > Hi Oren, > > I'm now trying to port your patchset to x86_64, and find a tiny > inconsistency issue. > > > On 2008-10-30 at 09:51 -0400, Oren Laadan wrote: >> +/* dump the thread_struct of a given task */ >> +int cr_write_thread(struct cr_ctx *ctx, struct task_struct *t) >> +{ >> + struct cr_hdr h; >> + struct cr_hdr_thread *hh = cr_hbuf_get(ctx, sizeof(*hh)); >> + struct thread_struct *thread; >> + struct desc_struct *desc; >> + int ntls = 0; >> + int n, ret; >> + >> + h.type = CR_HDR_THREAD; >> + h.len = sizeof(*hh); >> + h.parent = task_pid_vnr(t); >> + >> + thread = &t->thread; >> + >> + /* calculate no. of TLS entries that follow */ >> + desc = thread->tls_array; >> + for (n = GDT_ENTRY_TLS_ENTRIES; n > 0; n--, desc++) { >> + if (desc->a || desc->b) >> + ntls++; >> + } >> + >> + hh->gdt_entry_tls_entries = GDT_ENTRY_TLS_ENTRIES; >> + hh->sizeof_tls_array = sizeof(thread->tls_array); >> + hh->ntls = ntls; >> + >> + ret = cr_write_obj(ctx, &h, hh); >> + cr_hbuf_put(ctx, sizeof(*hh)); >> + if (ret < 0) >> + return ret; > > Please add > if (ntls == 0) > return ret; > because, in restart phase, reading TLS entries from the image file > is skipped if hh->ntls == 0, which may incur inconsistency and fail > to restart. > Will fix, thanks. Oren. -- 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/