Re: [git pull] lguest: paravirt boot code

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Rusty Russell <rusty@...>
Cc: <linux-kernel@...>, lguest <lguest@...>, <virtualization@...>, Jeremy Fitzhardinge <jeremy@...>, H. Peter Anvin <hpa@...>
Date: Tuesday, October 23, 2007 - 12:10 pm

On Tue, 23 Oct 2007, Rusty Russell wrote:

Ok. However, please include a proper diffstat. And by proper, I mean:

	git diff -M --stat --summary

because right now your diffstat doesn't contain the final "total number of 
lines added/removed" (which is the easiest way for me to see that there 
isn't anything strange in there), and your diffstat doesn't do renames, so 
renames look like delete/create pairs. For example, you had:


but in reality it was not at all thousands of lines changed, but instead a 
rename with much smaller changes:

 drivers/lguest/lguest.c => arch/x86/lguest/boot.c  |  102 +-

which is a lot more readable and tells me much more about what is going 
on.

And at the end, I really do want to see the details like this:

	 70 files changed, 4822 insertions(+), 4401 deletions(-)
	 create mode 100644 arch/x86/lguest/Kconfig
	 create mode 100644 arch/x86/lguest/Makefile
	 rename drivers/lguest/lguest.c => arch/x86/lguest/boot.c (93%)
	 rename drivers/lguest/lguest_asm.S => arch/x86/lguest/i386_head.S (73%)
	 delete mode 100644 drivers/block/lguest_blk.c
	 create mode 100644 drivers/block/virtio_blk.c
	 delete mode 100644 drivers/char/hvc_lguest.c
	 create mode 100644 drivers/char/virtio_console.c
	 delete mode 100644 drivers/lguest/io.c
	 delete mode 100644 drivers/lguest/lguest_bus.c
	 create mode 100644 drivers/lguest/lguest_device.c
	 create mode 100644 drivers/lguest/x86/core.c
	 rename drivers/lguest/{switcher.S => x86/switcher_32.S} (99%)
	 delete mode 100644 drivers/net/lguest_net.c
	 create mode 100644 drivers/net/virtio_net.c
	 create mode 100644 drivers/virtio/Kconfig
	 create mode 100644 drivers/virtio/Makefile
	 create mode 100644 drivers/virtio/config.c
	 create mode 100644 drivers/virtio/virtio.c
	 create mode 100644 drivers/virtio/virtio_ring.c
	 create mode 100644 include/asm-x86/lguest.h
	 create mode 100644 include/asm-x86/lguest_hcall.h
	 delete mode 100644 include/linux/lguest_bus.h
	 create mode 100644 include/linux/virtio.h
	 create mode 100644 include/linux/virtio_blk.h
	 create mode 100644 include/linux/virtio_config.h
	 create mode 100644 include/linux/virtio_console.h
	 create mode 100644 include/linux/virtio_net.h
	 create mode 100644 include/linux/virtio_ring.h

which again gives a nice overview of what the heck is actually going on 
here. All of which you get for free if you use the above git command line.

Anyway, pulled. But just for future reference,

		Linus
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[git pull] lguest: paravirt boot code, Rusty Russell, (Sun Oct 21, 10:37 pm)
Re: [git pull] lguest: paravirt boot code, Linus Torvalds, (Mon Oct 22, 10:28 pm)
Re: [git pull] lguest: paravirt boot code, Rusty Russell, (Tue Oct 23, 2:03 am)
Re: [git pull] lguest: paravirt boot code, Linus Torvalds, (Tue Oct 23, 12:10 pm)
Re: [git pull] lguest: paravirt boot code, Rusty Russell, (Thu Oct 25, 1:19 am)
Re: [git pull] lguest: paravirt boot code, Linus Torvalds, (Thu Oct 25, 6:41 pm)
Re: [git pull] lguest: paravirt boot code, Stephen Rothwell, (Thu Oct 25, 2:31 am)
Re: [git pull] lguest: paravirt boot code, Jeff Garzik, (Tue Oct 23, 4:37 pm)
Re: [git pull] lguest: paravirt boot code, Christian Borntraeger, (Tue Oct 23, 2:55 am)
Re: [git pull] lguest: paravirt boot code, Rusty Russell, (Tue Oct 23, 3:44 am)