From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sasha Levin Subject: Re: [PATCH 1/2] kvm tools: Add missing 9p remove handler Date: Mon, 07 Nov 2011 23:40:05 +0200 Message-ID: <1320702005.14351.2.camel@lappy> References: <1320679189-4123-1-git-send-email-levinsasha928@gmail.com> <1320680298.1428.89.camel@jaguar> <4EB84514.2060008@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: Pekka Enberg , kvm@vger.kernel.org, mingo@elte.hu, asias.hejun@gmail.com, gorcunov@gmail.com To: Darren Hart Return-path: Received: from mail-fx0-f46.google.com ([209.85.161.46]:35636 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752511Ab1KGVl4 (ORCPT ); Mon, 7 Nov 2011 16:41:56 -0500 Received: by mail-fx0-f46.google.com with SMTP id n17so459967faa.19 for ; Mon, 07 Nov 2011 13:41:56 -0800 (PST) In-Reply-To: <4EB84514.2060008@linux.intel.com> Sender: kvm-owner@vger.kernel.org List-ID: Hi Darren, On Mon, 2011-11-07 at 12:52 -0800, Darren Hart wrote: > Hi Pekka, > > On 11/07/2011 07:38 AM, Pekka Enberg wrote: > > On Mon, 2011-11-07 at 17:19 +0200, Sasha Levin wrote: > >> Signed-off-by: Sasha Levin > > > > -ENOCHANGELOG :-) > > > > I assume this is related to the git problems Darren Hart reported on > > Google Plus? > > These patches certainly help things along. The git init command now > completes and and I can remove existing git repositories (which I could > not before). > > I was unable to get a git clone to complete (hangs at receiving objects > 0%). I was able to create a new repository, edit a file, add it, and > commit it. "git log" return nothing, same with git show HEAD: I've tested 'git clone' with several repositories, and it worked fine. Maybe it's stuck because you're trying to clone something big? Could you try cloning a small repository and see if it works for you? > sh-4.2# cd 9ptest/ > sh-4.2# ls > world > sh-4.2# git status > # On branch master > nothing to commit (working directory clean) > > (so it doesn't list "world" as untracked nor as changed but not > committed). It has been committed. > > sh-4.2# git log > sh-4.2# git show HEAD > sh-4.2# git whatchanged HEAD I've tried doing as follows: git init echo "test" > dummy_file git add dummy_file git commit -m "my message" git log At that point I got the right response from 'git log', as well as from the other status commands. Did you do anything different? -- Sasha.