Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756536AbYKDSox (ORCPT ); Tue, 4 Nov 2008 13:44:53 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754571AbYKDSol (ORCPT ); Tue, 4 Nov 2008 13:44:41 -0500 Received: from e35.co.us.ibm.com ([32.97.110.153]:37829 "EHLO e35.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754370AbYKDSok (ORCPT ); Tue, 4 Nov 2008 13:44:40 -0500 Date: Tue, 4 Nov 2008 12:44:36 -0600 From: "Serge E. Hallyn" To: Oren Laadan Cc: Linus Torvalds , containers@lists.linux-foundation.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-api@vger.kernel.org, Thomas Gleixner , Dave Hansen , Ingo Molnar , "H. Peter Anvin" , Alexander Viro Subject: Re: [RFC v8][PATCH 0/12] Kernel based checkpoint/restart Message-ID: <20081104184436.GA16328@us.ibm.com> References: <1225374675-22850-1-git-send-email-orenl@cs.columbia.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1225374675-22850-1-git-send-email-orenl@cs.columbia.edu> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1052 Lines: 40 Quoting Oren Laadan (orenl@cs.columbia.edu): > Basic checkpoint-restart [C/R]: v8 adds support for "external" checkpoint > and improves documentation. Older announcements below. The following test-program seems to reliably trigger a bug. Run it in a new set of namespaces, i.e. ns_exec -cmpiuU ./runme > /tmp/o then control-c it. The second time I do that, I get the dcache.c:666 BUG(). #include #include #include #include #include #define __NR_checkpoint 333 int main (int argc, char *argv[]) { pid_t pid = getpid(); int ret; close(0); close(2); ret = syscall (__NR_checkpoint, pid, STDOUT_FILENO, 0); if (ret < 0) perror ("checkpoint"); else printf ("checkpoint id %d\n", ret); sleep(200); return (ret > 0 ? 0 : 1); } -serge -- 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/