David S. Ahern wrote:
I have a clone of the kvm repository, but evidently not running the
right magic to see the changes in the per-page-pte-tracking branch. I
ran the following:
git clone git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm.git
git branch per-page-pte-tracking
[EMAIL PROTECTED] kvm]$ git branch
master
* per-page-pte-tracking
But arch/x86/kvm/mmu.c does not show the changes for the
per-page-pte-history.patch.
What I am not doing correctly here?
'git branch' creates a new branch. Try the following
git fetch origin
git checkout origin/per-page-pte-tracking
If that doesn't work (old git) try
git fetch git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm.git
per-page-pte-tracking:refs/heads/per-page-pte-tracking
git checkout per-page-pte-tracking
--
Do not meddle in the internals of kernels, for they are subtle and quick to
panic.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html