search for: 27,7

Displaying 20 results from an estimated 737 matches for "27,7".

Did you mean: 24,7
2009 Oct 08
3
[PATCH] fix storages crazyness
Signed-off-by: Loiseleur Michel <mloiseleur at linagora.com> --- app/models/vm.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app/models/vm.rb b/app/models/vm.rb index 88e0aef..0be3f89 100644 --- a/app/models/vm.rb +++ b/app/models/vm.rb @@ -27,7 +27,7 @@ class Vm < ActiveRecord::Base find(:all, :conditions=>{:state=>Task::STATE_QUEUED}) end end - has_and_belongs_to_many :storage_volumes + has_and_belongs_to_many :storage_volumes, :uniq => true has_many :nics, :dependent => :destroy -- 1.6.2.5
2015 Sep 11
2
[PATCH 1/1] efi/x86_64: fix trivial compilation warning
...end of a comment. Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com> --- efi/x86_64/linux.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/efi/x86_64/linux.S b/efi/x86_64/linux.S index 972c0b2..29dde94 100644 --- a/efi/x86_64/linux.S +++ b/efi/x86_64/linux.S @@ -27,7 +27,7 @@ kernel_jump: base_address: pop %rsi - /* need to perform a long jump to update cs + /* need to perform a long jump to update cs */ /* load absolute address of pm_code in jmp_address location */ lea (pm_code - base_address)(%rsi, 1), %rax -- 2.5.1
2016 Sep 18
2
[PATCH 2/2] nouveau: Fix compile error due to bad include
...eau_drm.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h > index 259588a..0bfaae8 100644 > --- a/drm/nouveau/uapi/drm/nouveau_drm.h > +++ b/drm/nouveau/uapi/drm/nouveau_drm.h > @@ -27,7 +27,7 @@ > > #define DRM_NOUVEAU_EVENT_NVIF 0x80000000 > > -#include "drm.h" > +#include "drm/drm.h" > > #if defined(__cplusplus) > extern "C" { > -- > 2.10.0 > > ___________________________...
2012 Apr 05
3
[PATCH] tools/blktap2: fix 'make clean'
...d5cba tools/blktap2: fix ''make clean'' Signed-off-by: Tim Deegan <tim@xen.org> diff -r d690c7e896a2 -r 4b6bf18b6790 tools/blktap2/lvm/Makefile --- a/tools/blktap2/lvm/Makefile Thu Apr 05 11:06:03 2012 +0100 +++ b/tools/blktap2/lvm/Makefile Thu Apr 05 11:24:26 2012 +0100 @@ -27,7 +27,7 @@ lvm-util: lvm-util.o $(CC) -DLVM_UTIL $(LDFLAGS) -o lvm-util lvm-util.c clean: - rm -rf *.o *~ $(DEPS) $(IBIN) + rm -rf *.o *.opic *~ $(DEPS) $(IBIN) .PHONY: all build clean install lvm-util
2020 Apr 06
1
[v2v PATCH] tests: fix location to generated images
...data/phony-guests/blank-disk.img'/> <target dev='hdb' bus='ide'/> </disk> </devices> diff --git a/tests/test-v2v-cdrom.sh b/tests/test-v2v-cdrom.sh index 8adc5103..9915f8ac 100755 --- a/tests/test-v2v-cdrom.sh +++ b/tests/test-v2v-cdrom.sh @@ -27,7 +27,7 @@ skip_if_backend uml skip_unless_phony_guest windows.img skip_unless_phony_guest blank-disk.img -libvirt_uri="test://$abs_srcdir/test-v2v-cdrom.xml" +libvirt_uri="test://$abs_builddir/test-v2v-cdrom.xml" export VIRT_TOOLS_DATA_DIR="$top_srcdir/test-data/fake-...
2020 Mar 27
1
[PATCH v2 4/5] Kbuild: Add "-fcommon" for clang builds
...at google.com> --- usr/klibc/arch/x86_64/MCONFIG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/klibc/arch/x86_64/MCONFIG b/usr/klibc/arch/x86_64/MCONFIG index a6ba7c85c68b..46d29985bfd6 100644 --- a/usr/klibc/arch/x86_64/MCONFIG +++ b/usr/klibc/arch/x86_64/MCONFIG @@ -27,7 +27,7 @@ ifneq ($(cc-name),clang) # so we can't use a cc-option test to filter them. KLIBCOPTFLAGS += -falign-functions=1 -falign-jumps=1 -falign-loops=1 else -KLIBCOPTFLAGS += -fno-builtin-bcmp +KLIBCOPTFLAGS += -fno-builtin-bcmp -fcommon endif KLIBCBITSIZE = 64 -- 2...
2010 Apr 07
1
[PATCH node] Fix defaulting of OVIRT_CACHE_DIR in recipe makefile
...kefile.am was broken. Signed-off-by: Mike Burns <mburns at redhat.com> --- recipe/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/recipe/Makefile.am b/recipe/Makefile.am index fb34437..d09905a 100644 --- a/recipe/Makefile.am +++ b/recipe/Makefile.am @@ -27,7 +27,7 @@ ARCH = $(shell rpm --eval '%{_arch}') OVIRT_NODE_RECIPE = ovirt-node-recipe.ks PKG_FMT = iso PACKAGE = ovirt-node-image -OVIRT_CACHE_DIR ? =$(HOME)/ovirt-cache +OVIRT_CACHE_DIR ?= $(HOME)/ovirt-cache NODE_TMP = $(OVIRT_CACHE_DIR)/...
2016 Sep 18
5
[PATCH 1/2] Revert "bus: remove cpu_coherent flag"
This reverts commit 01bbcb69f80e1058395b737ae399c6f4ef48691b. The commit caused fence timeouts within nvc0_screen_destroy and most likely other places as well. The most obvious effect is, that userspace processes take minutes to actually quit. Signed-off-by: Karol Herbst <karolherbst at gmail.com> --- drm/nouveau/include/nvkm/core/device.h | 1 + drm/nouveau/nouveau_bo.c |
2019 Dec 17
1
[PATCH] drm/nouveau: Add correct turing page kinds
...--- .../gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp100.c | 6 +++--- .../gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv50.c | 6 +++--- 12 files changed, 43 insertions(+), 22 deletions(-) diff --git a/drivers/gpu/drm/nouveau/include/nvif/if0008.h b/drivers/gpu/drm/nouveau/include/nvif/if0008.h index 8450127420f5..c21d09f04f1d 100644 --- a/drivers/gpu/drm/nouveau/include/nvif/if0008.h +++ b/drivers/gpu/drm/nouveau/include/nvif/if0008.h @@ -35,7 +35,7 @@ struct nvif_mmu_type_v0 { struct nvif_mmu_kind_v0 { __u8 version; - __u8 pad01[1]; + __u8 kind_inv; __u16 count; __u8 data[]; }; diff --g...
2013 Nov 21
2
[PATCH v2 RFC 3/3] virtio_ccw: invoke virtio_driver's notify() on CIO_GONE notification
...irtio_ccw.c | 15 +++++++++++++-- > 1 file changed, 13 insertions(+), 2 deletions(-) > > diff --git a/drivers/s390/kvm/virtio_ccw.c b/drivers/s390/kvm/virtio_ccw.c > index 35b9aaa..682f688 100644 > --- a/drivers/s390/kvm/virtio_ccw.c > +++ b/drivers/s390/kvm/virtio_ccw.c > @@ -27,6 +27,7 @@ > #include <linux/module.h> > #include <linux/io.h> > #include <linux/kvm_para.h> > +#include <linux/notifier.h> > #include <asm/setup.h> > #include <asm/irq.h> > #include <asm/cio.h> > @@ -1064,8 +1065,18 @@ out_fre...
2013 Nov 21
2
[PATCH v2 RFC 3/3] virtio_ccw: invoke virtio_driver's notify() on CIO_GONE notification
...irtio_ccw.c | 15 +++++++++++++-- > 1 file changed, 13 insertions(+), 2 deletions(-) > > diff --git a/drivers/s390/kvm/virtio_ccw.c b/drivers/s390/kvm/virtio_ccw.c > index 35b9aaa..682f688 100644 > --- a/drivers/s390/kvm/virtio_ccw.c > +++ b/drivers/s390/kvm/virtio_ccw.c > @@ -27,6 +27,7 @@ > #include <linux/module.h> > #include <linux/io.h> > #include <linux/kvm_para.h> > +#include <linux/notifier.h> > #include <asm/setup.h> > #include <asm/irq.h> > #include <asm/cio.h> > @@ -1064,8 +1065,18 @@ out_fre...
2010 Jan 05
1
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
...Lattner wrote: > Doh, thanks, done. LOL. Next patch should be titled 'really really really fix this' :-) Please apply the last part of the diff, too: Index: TEST.libcalls.Makefile =================================================================== --- TEST.libcalls.Makefile (revision 92757) +++ TEST.libcalls.Makefile (working copy) @@ -27,7 +27,6 @@ @echo "---------------------------------------------------------------" >> $@ @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ @echo "----------------------------------------...
2016 Apr 21
0
[PATCH 11/24] drm/nouveau: drop drm/ prefix from include
...elikov at gmail.com> --- include/uapi/drm/nouveau_drm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/drm/nouveau_drm.h b/include/uapi/drm/nouveau_drm.h index 8d2dc05..259588a 100644 --- a/include/uapi/drm/nouveau_drm.h +++ b/include/uapi/drm/nouveau_drm.h @@ -27,7 +27,7 @@ #define DRM_NOUVEAU_EVENT_NVIF 0x80000000 -#include <drm/drm.h> +#include "drm.h" #if defined(__cplusplus) extern "C" { -- 2.6.2
2016 Sep 18
0
[PATCH 2/2] nouveau: Fix compile error due to bad include
...gt; --- drm/nouveau/uapi/drm/nouveau_drm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h index 259588a..0bfaae8 100644 --- a/drm/nouveau/uapi/drm/nouveau_drm.h +++ b/drm/nouveau/uapi/drm/nouveau_drm.h @@ -27,7 +27,7 @@ #define DRM_NOUVEAU_EVENT_NVIF 0x80000000 -#include "drm.h" +#include "drm/drm.h" #if defined(__cplusplus) extern "C" { -- 2.10.0
2016 Sep 18
0
[PATCH 2/2] nouveau: Fix compile error due to bad include
...file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h >> index 259588a..0bfaae8 100644 >> --- a/drm/nouveau/uapi/drm/nouveau_drm.h >> +++ b/drm/nouveau/uapi/drm/nouveau_drm.h >> @@ -27,7 +27,7 @@ >> >> #define DRM_NOUVEAU_EVENT_NVIF 0x80000000 >> >> -#include "drm.h" >> +#include "drm/drm.h" >> >> #if defined(__cplusplus) >> extern "C" { >> -- >> 2.10...
2015 Sep 11
0
[PATCH 1/1] efi/x86_64: fix trivial compilation warning
...acjr at zytor.com> Thanks, Paulo > --- > efi/x86_64/linux.S | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/efi/x86_64/linux.S b/efi/x86_64/linux.S > index 972c0b2..29dde94 100644 > --- a/efi/x86_64/linux.S > +++ b/efi/x86_64/linux.S > @@ -27,7 +27,7 @@ kernel_jump: > base_address: > pop %rsi > > - /* need to perform a long jump to update cs > + /* need to perform a long jump to update cs */ > > /* load absolute address of pm_code in jmp_address location > */ lea (pm_code - base_address)(%rsi, 1), %rax...
2016 Nov 18
0
Modern FireFox on CentOS 7
...-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --- firefox.spec.orig 2016-11-18 12:31:02.963164405 -0800 +++ firefox.spec 2016-11-18 12:50:16.068918152 -0800 @@ -1,5 +1,5 @@ # Use system nspr/nss? -%define system_nss 1 +%define system_nss 0 # Use system sqlite? %if 0%{?fedora} > 23 @@ -27,7 +27,7 @@ %endif # Hardened build? -%if 0%{?fedora} > 20 +%if 0%{?fedora} > 20 || 0%{?rhel} > 6 %define hardened_build 1 %else %define hardened_build 0 @@ -94,7 +94,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 50.0 -Releas...
2004 Dec 10
1
mech-plain patch
Hi Guys, Unoffical patch for mech-plain so the AUTH PLAIN command works with SQL (and possibly other DBs). Thunderbird should work again after this. --- mech-plain.c 2004-12-10 01:56:51.065987304 +0000 +++ mech-plain.c 2004-12-10 01:53:16.974534152 +0000 @@ -27,7 +27,10 @@ authid = (const char *) data; authenid = NULL; pass = ""; - count = 0; + if (data_size == 0) + return; + + count = 0; for (i = 0; i < data_size; i++) { if (data[i] == '\0') {...
2012 Jan 04
1
[PATCH] build: Fix automake warnings
...endif + +.PHONY: src_deps test_images diff --git a/resize/Makefile.am b/resize/Makefile.am index 5046a8c..3f33118 100644 --- a/resize/Makefile.am +++ b/resize/Makefile.am @@ -17,6 +17,8 @@ include $(top_srcdir)/subdir-rules.mk +SOURCES = + EXTRA_DIST = \ $(SOURCES) \ virt-resize.pod \ @@ -27,7 +29,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img if HAVE_OCAML # Alphabetical order. -SOURCES = \ +SOURCES += \ progress_c.c \ progress.mli \ progress.ml \ @@ -120,10 +122,10 @@ depend: .depend include .depend -.PHONY: depend docs - endif +.PHONY: depen...
2008 Mar 04
0
[PATCH] Compiling libev on Ubuntu Edgy Eft
On Ubuntu Edy Eft sys/inotify.h does not define IN_DONT_FOLLOW (however linux/inotify.h does), so adding the check below will circumvent compilation errors. diff --git a/src/extconf.rb b/src/extconf.rb index 2175fab..91bd44a 100644 --- a/src/extconf.rb +++ b/src/extconf.rb @@ -27,7 +27,7 @@ if have_header(''port.h'') flags << ''-DEV_USE_PORT'' end -if have_header(''sys/inotify.h'') +if have_header(''sys/inotify.h'') and have_var(''IN_DONT_FOLLOW'', ''sys/ inotify.h'')...