search for: 464,7

Displaying 20 results from an estimated 122 matches for "464,7".

Did you mean: 64,7
2008 Jun 30
2
[LLVMdev] Recently failing vector tests
...for you. > It will be something close to this. > > Index: CodeGen/PrologEpilogInserter.cpp > =================================================================== > --- CodeGen/PrologEpilogInserter.cpp (revision 52829) > +++ CodeGen/PrologEpilogInserter.cpp (working copy) > @@ -464,7 +464,8 @@ > // works. > if (!RegInfo->targetHandlesStackFrameRounding() && > (FFI->hasCalls() || FFI->hasVarSizedObjects() || > - RegInfo->needsStackRealignment(Fn))) { > + (RegInfo->needsStackRealignment(Fn) && > +...
2020 Aug 07
2
[PATCH nbdkit] plugins: file: More standard cache mode names
...pages we have just written + * to the file to be flushed to disk so we can immediately evict them + * from the page cache. */ - if (cache_mode == cache_none) flags |= NBDKIT_FLAG_FUA; + if (cache_mode == cache_writethrough) flags |= NBDKIT_FLAG_FUA; #endif while (count > 0) { @@ -464,7 +464,7 @@ file_pwrite (void *handle, const void *buf, uint32_t count, uint64_t offset, #ifdef HAVE_POSIX_FADVISE /* On Linux this will evict the pages we just wrote from the page cache. */ - if (cache_mode == cache_none) + if (cache_mode == cache_writethrough) posix_fadvise (h->fd...
2017 Dec 03
2
5.0.1-rc2 has been tagged
....addMBB(Copy1MBB); > + } > > // Copy0MBB: > // %FalseValue = ... > diff --git a/lib/Target/BPF/BPFInstrInfo.td b/lib/Target/BPF/BPFInstrInfo.td > index f683578..56f0f9c 100644 > --- a/lib/Target/BPF/BPFInstrInfo.td > +++ b/lib/Target/BPF/BPFInstrInfo.td > @@ -464,7 +464,7 @@ let usesCustomInserter = 1 in { > (ins GPR:$lhs, i64imm:$rhs, i64imm:$imm, > GPR:$src, GPR:$src2), > "# Select PSEUDO $dst = $lhs $imm $rhs ? $src : $src2", > [(set i64:$dst, > -...
2011 Aug 30
0
[PATCH node] don't trigger upgrade when local_boot_trigger is passed
rhbz#734112 Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-early | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index fa24720..fa7d1f5 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -464,7 +464,7 @@ start_ovirt_early () { fi done ;; - upgrade* | ovirt_upgrade* | local_boot* | ovirt_local_boot*) + upgrade* | ovirt_upgrade* | local_boot | local_boot=* | ovirt_local_boot*) upgrade=1 if ! grep -q...
2008 Jun 27
0
[LLVMdev] Recently failing vector tests
...y to fix this. See if this works for you. It will be something close to this. Index: CodeGen/PrologEpilogInserter.cpp =================================================================== --- CodeGen/PrologEpilogInserter.cpp (revision 52829) +++ CodeGen/PrologEpilogInserter.cpp (working copy) @@ -464,7 +464,8 @@ // works. if (!RegInfo->targetHandlesStackFrameRounding() && (FFI->hasCalls() || FFI->hasVarSizedObjects() || - RegInfo->needsStackRealignment(Fn))) { + (RegInfo->needsStackRealignment(Fn) && + Offset > std::abs(TFI.ge...
2007 Jan 20
1
Typos in man page
Dear rsync people, I found four of what I believe to be typos in the rsync man page in CVS. The attached patch fixes them. Matt -------------- next part -------------- A non-text attachment was scrubbed... Name: man-typos.diff Type: text/x-patch Size: 2172 bytes Desc: not available Url : http://lists.samba.org/archive/rsync/attachments/20070119/afe0d18d/man-typos.bin
2008 Jun 27
2
[LLVMdev] Recently failing vector tests
Running on x86-64 linux: FAIL: test/CodeGen/X86/vec_ins_extract.ll Failed with exit(1) at line 1 while running: llvm-as < test/CodeGen/X86/vec_ins_extract.ll | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah | not grep sub.*esp subl $16, %esp subl $16, %esp subl $16, %esp subl $16, %esp child process exited abnormally FAIL:
2008 Jun 30
0
[LLVMdev] Recently failing vector tests
...be something close to this. >> >> Index: CodeGen/PrologEpilogInserter.cpp >> =================================================================== >> --- CodeGen/PrologEpilogInserter.cpp (revision 52829) >> +++ CodeGen/PrologEpilogInserter.cpp (working copy) >> @@ -464,7 +464,8 @@ >> // works. >> if (!RegInfo->targetHandlesStackFrameRounding() && >> (FFI->hasCalls() || FFI->hasVarSizedObjects() || >> - RegInfo->needsStackRealignment(Fn))) { >> + (RegInfo->needsStackRealignment(Fn) &...
2008 Jun 30
1
[LLVMdev] Recently failing vector tests
...t; >> > >> Index: CodeGen/PrologEpilogInserter.cpp > >> =================================================================== > >> --- CodeGen/PrologEpilogInserter.cpp (revision 52829) > >> +++ CodeGen/PrologEpilogInserter.cpp (working copy) > >> @@ -464,7 +464,8 @@ > >> // works. > >> if (!RegInfo->targetHandlesStackFrameRounding() && > >> (FFI->hasCalls() || FFI->hasVarSizedObjects() || > >> - RegInfo->needsStackRealignment(Fn))) { > >> + (RegInfo->needsS...
2007 Apr 18
2
[RFC PATCH 23/35] Increase x86 interrupt vector range
...arch/x86_64/kernel/entry.S | 2 +- arch/x86_64/kernel/irq.c | 4 ++-- arch/x86_64/kernel/smp.c | 4 ++-- include/asm-x86_64/hw_irq.h | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) --- linus-2.6.orig/arch/i386/kernel/entry.S +++ linus-2.6/arch/i386/kernel/entry.S @@ -464,7 +464,7 @@ vector=0 ENTRY(irq_entries_start) .rept NR_IRQS ALIGN -1: pushl $vector-256 +1: pushl $~(vector) jmp common_interrupt .data .long 1b @@ -481,7 +481,7 @@ common_interrupt: #define BUILD_INTERRUPT(name, nr) \ ENTRY(name)...
2007 Apr 18
2
[RFC PATCH 23/35] Increase x86 interrupt vector range
...arch/x86_64/kernel/entry.S | 2 +- arch/x86_64/kernel/irq.c | 4 ++-- arch/x86_64/kernel/smp.c | 4 ++-- include/asm-x86_64/hw_irq.h | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) --- linus-2.6.orig/arch/i386/kernel/entry.S +++ linus-2.6/arch/i386/kernel/entry.S @@ -464,7 +464,7 @@ vector=0 ENTRY(irq_entries_start) .rept NR_IRQS ALIGN -1: pushl $vector-256 +1: pushl $~(vector) jmp common_interrupt .data .long 1b @@ -481,7 +481,7 @@ common_interrupt: #define BUILD_INTERRUPT(name, nr) \ ENTRY(name)...
2017 Nov 30
9
5.0.1-rc2 has been tagged
Hi, I've tagged the 5.0.1-rc2 release, go ahead and start testing and report your results. -Tom
2020 Aug 08
0
Re: [PATCH nbdkit] plugins: file: More standard cache mode names
...file to be flushed to disk so we can immediately evict them > + * from the page cache. > */ > - if (cache_mode == cache_none) flags |= NBDKIT_FLAG_FUA; > + if (cache_mode == cache_writethrough) flags |= NBDKIT_FLAG_FUA; > #endif > > while (count > 0) { > @@ -464,7 +464,7 @@ file_pwrite (void *handle, const void *buf, uint32_t count, uint64_t offset, > > #ifdef HAVE_POSIX_FADVISE > /* On Linux this will evict the pages we just wrote from the page cache. */ > - if (cache_mode == cache_none) > + if (cache_mode == cache_writethrough) &gt...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...emu/sysemu.h | 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.c b/qemu/hw/pc.c index dde40c3..003d15d 100644 --- a/qemu/hw/p...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...emu/sysemu.h | 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.c b/qemu/hw/pc.c index dde40c3..003d15d 100644 --- a/qemu/hw/p...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h index beb711c..ce1a1f3 100644 --- a/qemu/hw/pc.h +++ b/qemu/hw/pc.h @@...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h index beb711c..ce1a1f3 100644 --- a/qemu/hw/pc.h +++ b/qemu/hw/pc.h @@...
2010 Sep 02
1
[PATCH 1/1] Introduce an option to always pxe-boot a vm.
...d_boot_settings if provisioning == nil - if boot_device==BOOT_DEV_NETWORK + if boot_device==BOOT_DEV_NETWORK_ALWAYS + PXE_ALWAYS_OPTION_VALUE + elsif boot_device==BOOT_DEV_NETWORK PXE_OPTION_VALUE elsif boot_device==BOOT_DEV_HD HD_OPTION_VALUE @@ -464,7 +469,9 @@ class Vm < ActiveRecord::Base self.storage_volumes=@storage_volumes_pending @storage_volumes_pending = [] end - errors.add("nics", "must specify at least one network if pxe booting off a network") unless boot_device != BOOT_DEV_NETWORK || nic...
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
...ue)); +int kvm_sync_shadow_with_user(kvm_context_t kvm); + /*! * \brief Create a memory alias * Index: kvm-userspace/qemu/Makefile.target =================================================================== --- kvm-userspace.orig/qemu/Makefile.target +++ kvm-userspace/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o virtio-blk.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support Index: kvm-userspace/qemu/hw/pc.c ======================...
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
...ue)); +int kvm_sync_shadow_with_user(kvm_context_t kvm); + /*! * \brief Create a memory alias * Index: kvm-userspace/qemu/Makefile.target =================================================================== --- kvm-userspace.orig/qemu/Makefile.target +++ kvm-userspace/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o virtio-blk.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support Index: kvm-userspace/qemu/hw/pc.c ======================...