* [ANNOUNCE] kvm-kmod-2.6.33
@ 2010-02-25 10:17 Jan Kiszka
2010-02-26 15:11 ` Ingmar Schraub
0 siblings, 1 reply; 3+ messages in thread
From: Jan Kiszka @ 2010-02-25 10:17 UTC (permalink / raw)
To: kvm
Now that 2.6.33 is out, time to release the corresponding kvm-kmod
package as well. Not much has happened since 2.6.33-rc6, though.
KVM changes since kvm-kmod-2.6.33-rc6:
- PIT: control word is write-only
(fixes side-effects of spurious reads)
- kvmclock: count total_sleep_time when updating guest clock
(requires >= 2.6.32.9 as host, falls back to unfixed version
otherwise)
kvm-kmod changes:
- warn about kvmclock issues across host suspend/resume
- detect host kernel extra version to make use of fixes in stable
series
See [1] for the delta to 2.6.32.
I also released kvm-kmod-2.6.32.9 with basically the same changes. That
may be the last release based on that kernel, but nothing is set in
stone yet (specifically as we already maintain kvm-kmod-2.6.32
internally for a customer).
Jan
[1] https://sourceforge.net/projects/kvm/files/kvm-kmod/2.6.33-rc6/changelog/view
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ANNOUNCE] kvm-kmod-2.6.33
2010-02-25 10:17 [ANNOUNCE] kvm-kmod-2.6.33 Jan Kiszka
@ 2010-02-26 15:11 ` Ingmar Schraub
2010-02-26 15:38 ` Jan Kiszka
0 siblings, 1 reply; 3+ messages in thread
From: Ingmar Schraub @ 2010-02-26 15:11 UTC (permalink / raw)
To: Jan Kiszka; +Cc: kvm
Hello Jan,
I can compile kvm-kmod-2.6.32.9 under Ubuntu 9.1 64-Bit, but 'make
install' fails with
ingmar@nexoc:~/KVM/kvm-kmod-2.6.32.9$ sudo make install
[sudo] password for ingmar:
mkdir -p ///usr/local/include/kvm-kmod/asm/
install -m 644 usr/include/asm-x86/{kvm,kvm_para}.h
///usr/local/include/kvm-kmod/asm/
install: cannot stat `usr/include/asm-x86/{kvm,kvm_para}.h': No such
file or directory
make: *** [install-hdr] Error 1
Before I used kvm-kmod-2.6.32.3 which installs just fine:
ingmar@nexoc:~/KVM/kvm-kmod-2.6.32.3$ sudo make install
mkdir -p ///lib/modules/2.6.31-19-generic/extra
cp x86/*.ko ///lib/modules/2.6.31-19-generic/extra
for i in ///lib/modules/2.6.31-19-generic/kernel/drivers/kvm/*.ko \
///lib/modules/2.6.31-19-generic/kernel/arch/x86/kvm/*.ko; do \
if [ -f "$i" ]; then mv "$i" "$i.orig"; fi; \
done
/sbin/depmod -a 2.6.31-19-generic -b /
install -m 644 -D scripts/65-kvm.rules //etc/udev/rules.d/65-kvm.rules
install -m 644 -D usr/include/asm-x86/kvm.h
///usr/local/include/kvm-kmod/asm/kvm.h
install -m 644 -D usr/include/linux/kvm.h
///usr/local/include/kvm-kmod/linux/kvm.h
sed 's|PREFIX|/usr/local|; s/VERSION/kvm-kmod-2.6.32.3/' kvm-kmod.pc >
.tmp.kvm-kmod.pc
install -m 644 -D .tmp.kvm-kmod.pc ///usr/local/lib/pkgconfig/kvm-kmod.pc
Any idea what could be wrong?
Regards,
Ingmar
Jan Kiszka wrote:
> Now that 2.6.33 is out, time to release the corresponding kvm-kmod
> package as well. Not much has happened since 2.6.33-rc6, though.
>
> KVM changes since kvm-kmod-2.6.33-rc6:
> - PIT: control word is write-only
> (fixes side-effects of spurious reads)
> - kvmclock: count total_sleep_time when updating guest clock
> (requires >= 2.6.32.9 as host, falls back to unfixed version
> otherwise)
>
> kvm-kmod changes:
> - warn about kvmclock issues across host suspend/resume
> - detect host kernel extra version to make use of fixes in stable
> series
>
> See [1] for the delta to 2.6.32.
>
> I also released kvm-kmod-2.6.32.9 with basically the same changes. That
> may be the last release based on that kernel, but nothing is set in
> stone yet (specifically as we already maintain kvm-kmod-2.6.32
> internally for a customer).
>
> Jan
>
> [1] https://sourceforge.net/projects/kvm/files/kvm-kmod/2.6.33-rc6/changelog/view
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ANNOUNCE] kvm-kmod-2.6.33
2010-02-26 15:11 ` Ingmar Schraub
@ 2010-02-26 15:38 ` Jan Kiszka
0 siblings, 0 replies; 3+ messages in thread
From: Jan Kiszka @ 2010-02-26 15:38 UTC (permalink / raw)
To: Ingmar Schraub; +Cc: kvm
Ingmar Schraub wrote:
> Hello Jan,
>
> I can compile kvm-kmod-2.6.32.9 under Ubuntu 9.1 64-Bit, but 'make
> install' fails with
>
> ingmar@nexoc:~/KVM/kvm-kmod-2.6.32.9$ sudo make install
> [sudo] password for ingmar:
> mkdir -p ///usr/local/include/kvm-kmod/asm/
> install -m 644 usr/include/asm-x86/{kvm,kvm_para}.h
> ///usr/local/include/kvm-kmod/asm/
> install: cannot stat `usr/include/asm-x86/{kvm,kvm_para}.h': No such
> file or directory
> make: *** [install-hdr] Error 1
>
> Before I used kvm-kmod-2.6.32.3 which installs just fine:
>
> ingmar@nexoc:~/KVM/kvm-kmod-2.6.32.3$ sudo make install
> mkdir -p ///lib/modules/2.6.31-19-generic/extra
> cp x86/*.ko ///lib/modules/2.6.31-19-generic/extra
> for i in ///lib/modules/2.6.31-19-generic/kernel/drivers/kvm/*.ko \
> ///lib/modules/2.6.31-19-generic/kernel/arch/x86/kvm/*.ko; do \
> if [ -f "$i" ]; then mv "$i" "$i.orig"; fi; \
> done
> /sbin/depmod -a 2.6.31-19-generic -b /
> install -m 644 -D scripts/65-kvm.rules //etc/udev/rules.d/65-kvm.rules
> install -m 644 -D usr/include/asm-x86/kvm.h
> ///usr/local/include/kvm-kmod/asm/kvm.h
> install -m 644 -D usr/include/linux/kvm.h
> ///usr/local/include/kvm-kmod/linux/kvm.h
> sed 's|PREFIX|/usr/local|; s/VERSION/kvm-kmod-2.6.32.3/' kvm-kmod.pc >
> .tmp.kvm-kmod.pc
> install -m 644 -D .tmp.kvm-kmod.pc ///usr/local/lib/pkgconfig/kvm-kmod.pc
>
> Any idea what could be wrong?
>
Likely bash'ism of mine (what's your shell?). This should fix it:
diff --git a/Makefile b/Makefile
index 94dde5c..c031701 100644
--- a/Makefile
+++ b/Makefile
@@ -62,9 +62,9 @@ KVM_KMOD_VERSION = $(strip $(if $(wildcard KVM_VERSION), \
install-hdr:
mkdir -p $(DESTDIR)/$(HEADERDIR)/asm/
- install -m 644 usr/include/asm-$(ARCH_DIR)/{kvm,kvm_para}.h $(DESTDIR)/$(HEADERDIR)/asm/
+ install -m 644 usr/include/asm-$(ARCH_DIR)/*.h $(DESTDIR)/$(HEADERDIR)/asm/
mkdir -p $(DESTDIR)/$(HEADERDIR)/linux/
- install -m 644 usr/include/linux/{kvm,kvm_para}.h $(DESTDIR)/$(HEADERDIR)/linux/
+ install -m 644 usr/include/linux/*.h $(DESTDIR)/$(HEADERDIR)/linux/
sed 's|PREFIX|$(PREFIX)|; s/VERSION/$(KVM_KMOD_VERSION)/' kvm-kmod.pc > $(tmppc)
install -m 644 -D $(tmppc) $(DESTDIR)/$(PKGCONFIGDIR)/kvm-kmod.pc
Jan
--
Siemens AG, Corporate Technology, CT T DE IT 1
Corporate Competence Center Embedded Linux
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-26 15:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-25 10:17 [ANNOUNCE] kvm-kmod-2.6.33 Jan Kiszka
2010-02-26 15:11 ` Ingmar Schraub
2010-02-26 15:38 ` Jan Kiszka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox