search for: 41,9

Displaying 20 results from an estimated 136 matches for "41,9".

Did you mean: 1,9
2015 Apr 29
2
[LLVMdev] Assertion failure (Bug 21609) in DwarfFile.cpp
...oposed diff is attached to the bug. However, there are around 175 testcases across clang & llvm that need to be udpated to reflect the new schema. One such eg: diff --git a/test/Instrumentation/AddressSanitizer/debug_info.ll b/test/Instrumentation/AddressSanitizer/debug_info.ll index c0939c5..4112f14 100644 --- a/test/Instrumentation/AddressSanitizer/debug_info.ll +++ b/test/Instrumentation/AddressSanitizer/debug_info.ll @@ -41,9 +41,9 @@ declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone !7 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !...
2015 Apr 29
2
[LLVMdev] Assertion failure (Bug 21609) in DwarfFile.cpp
...e debug info has indeed changed substantially in ToT. I have a 3.6 release from around March 1st. Thanks, Sandeep > >> >> >> diff --git a/test/Instrumentation/AddressSanitizer/debug_info.ll >> b/test/Instrumentation/AddressSanitizer/debug_info.ll >> index c0939c5..4112f14 100644 >> --- a/test/Instrumentation/AddressSanitizer/debug_info.ll >> +++ b/test/Instrumentation/AddressSanitizer/debug_info.ll >> @@ -41,9 +41,9 @@ declare void @llvm.dbg.declare(metadata, metadata, >> metadata) nounwind readnone >> !7 = !{!"0x15\00\000\00...
2019 Dec 09
1
[PATCH RFC net-next v8 1/3] netdev: pass the stuck queue to the timeout handler
...own the road, devices can learn to reset just the specific queue. > > The patch was generated with the following script: [...] > Signed-off-by: Michael S. Tsirkin <mst at redhat.com> > --- a/drivers/net/ethernet/8390/8390p.c > +++ b/drivers/net/ethernet/8390/8390p.c > @@ -41,9 +41,9 @@ void eip_set_multicast_list(struct net_device *dev) > } > EXPORT_SYMBOL(eip_set_multicast_list); > > -void eip_tx_timeout(struct net_device *dev) > +void eip_tx_timeout(struct net_device *dev, unsigned int txqueue) > { > - __ei_tx_timeout(dev); > +...
2009 Dec 31
1
[PATCH] Print NOUVEAU_NO_SWIZZLE and NOUVEAU_NO_TRANSFER messages only once
...nsfer.c | 6 ++++-- 8 files changed, 32 insertions(+), 13 deletions(-) diff --git a/src/gallium/drivers/nv04/nv04_transfer.c b/src/gallium/drivers/nv04/nv04_transfer.c index 2dd2e14..f7a64f9 100644 --- a/src/gallium/drivers/nv04/nv04_transfer.c +++ b/src/gallium/drivers/nv04/nv04_transfer.c @@ -41,6 +41,9 @@ nv04_transfer_new(struct pipe_screen *pscreen, struct pipe_texture *pt, struct nv04_miptree *mt = (struct nv04_miptree *)pt; struct nv04_transfer *tx; struct pipe_texture tx_tex_template, *tx_tex; + static int no_transfer = -1; + if(no_transfer < 0) + no_transfer = debug_get_bo...
2015 Oct 02
2
[PATCH] build: ensure .pot and .pod files for docs are up-to-date
...es for documentations, all the needed .pod files should be already there. --- po-docs/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po-docs/Makefile.am b/po-docs/Makefile.am index a274898..bf10558 100644 --- a/po-docs/Makefile.am +++ b/po-docs/Makefile.am @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf # language directory contains a Makefile.am that we need to keep up to # date (note each $lang/Makefile.am should be identical). # XXX Is there a better way? -SUBDIRS = $(linguas) +# The current directory is traversed first, to make sure that .pot and .pod +# fi...
2015 Oct 21
1
[PATCH hivex] build: pass $(MAKE) to run-perl-tests
...t;, mostly to use the script without having to set $MAKE. --- perl/Makefile.am | 4 +++- perl/run-perl-tests | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/perl/Makefile.am b/perl/Makefile.am index a0ae863..4632719 100644 --- a/perl/Makefile.am +++ b/perl/Makefile.am @@ -41,7 +41,9 @@ TESTS = run-perl-tests $(TESTS): src_deps all -TESTS_ENVIRONMENT = ../run +TESTS_ENVIRONMENT = \ + MAKE=$(MAKE) \ + ../run INSTALLDIRS = site diff --git a/perl/run-perl-tests b/perl/run-perl-tests index 770df94..e36c066 100755 --- a/perl/run-perl-tests +++ b/perl/run-perl-tes...
2010 Jan 12
1
[PATCH] Adds the qemu log to the autotest output.
...ibvirt/qemu/ is added to the output. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- autotest.sh | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/autotest.sh b/autotest.sh index 7503be0..5ccdbbb 100755 --- a/autotest.sh +++ b/autotest.sh @@ -41,8 +41,9 @@ ME=$(basename "$0") WORKDIR=$(mktemp -d) + warn() { printf '%s: %s\n' "$ME" "$*" >&2; } -die() { warn "$*"; exit 1; } +die() { warn "$*"; show_libvirt_log; exit 1; } debug() { if $debugging; then log "[DEBUG] %s...
2023 May 03
1
[PATCH v5 virtio 02/11] virtio: allow caller to override device DMA mask in vp_modern
...if (err) err = dma_set_mask_and_coherent(&pci_dev->dev, DMA_BIT_MASK(32)); diff --git a/include/linux/virtio_pci_modern.h b/include/linux/virtio_pci_modern.h index e7b1db1dd0bb..067ac1d789bc 100644 --- a/include/linux/virtio_pci_modern.h +++ b/include/linux/virtio_pci_modern.h @@ -41,6 +41,9 @@ struct virtio_pci_modern_device { /* optional check for vendor virtio device, returns dev_id or -ERRNO */ int (*device_id_check)(struct pci_dev *pdev); + + /* optional mask for devices with limited DMA space */ + u64 dma_mask; }; /* -- 2.17.1
2015 Oct 02
2
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...t; > po-docs/Makefile.am | 6 +++++- > > 1 file changed, 5 insertions(+), 1 deletion(-) > > > > diff --git a/po-docs/Makefile.am b/po-docs/Makefile.am > > index a274898..bf10558 100644 > > --- a/po-docs/Makefile.am > > +++ b/po-docs/Makefile.am > > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > > # language directory contains a Makefile.am that we need to keep up to > > # date (note each $lang/Makefile.am should be identical). > > # XXX Is there a better way? > > -SUBDIRS = $(linguas) > > +# The current directory is trav...
2018 Nov 22
1
[PATCH] Fix include for xattr.h
...tr.h> -# else -# ifdef HAVE_SYS_XATTR_H -# include <sys/xattr.h> -# endif +# ifdef HAVE_SYS_XATTR_H +# include <sys/xattr.h> # endif int diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c index 5ce8322f0d0e..ac0a49348a3a 100644 --- a/fuse/test-fuse.c +++ b/fuse/test-fuse.c @@ -41,13 +41,9 @@ #include <acl/libacl.h> #endif -#ifdef HAVE_ATTR_XATTR_H -#include <attr/xattr.h> -#else #ifdef HAVE_SYS_XATTR_H #include <sys/xattr.h> #endif -#endif #include <guestfs.h> #include "guestfs-utils.h" diff --git a/lib/fuse.c b/lib/fuse.c index...
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
..., type2) \ + (((union { typeof(type1) _t1; typeof(type2) _t2; })var)._t1) + struct sysinfo; extern int do_sysinfo(struct sysinfo *info); diff -r 0fe1a980708b kernel/irq/devres.c --- a/kernel/irq/devres.c Thu Jan 17 14:48:56 2008 +1100 +++ b/kernel/irq/devres.c Thu Jan 17 15:42:01 2008 +1100 @@ -41,9 +41,9 @@ static int devm_irq_match(struct device * If an IRQ allocated with this function needs to be freed * separately, dev_free_irq() must be used. */ -int devm_request_irq(struct device *dev, unsigned int irq, - irq_handler_t handler, unsigned long irqflags, - const char *d...
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
..., type2) \ + (((union { typeof(type1) _t1; typeof(type2) _t2; })var)._t1) + struct sysinfo; extern int do_sysinfo(struct sysinfo *info); diff -r 0fe1a980708b kernel/irq/devres.c --- a/kernel/irq/devres.c Thu Jan 17 14:48:56 2008 +1100 +++ b/kernel/irq/devres.c Thu Jan 17 15:42:01 2008 +1100 @@ -41,9 +41,9 @@ static int devm_irq_match(struct device * If an IRQ allocated with this function needs to be freed * separately, dev_free_irq() must be used. */ -int devm_request_irq(struct device *dev, unsigned int irq, - irq_handler_t handler, unsigned long irqflags, - const char *d...
2011 Sep 01
4
[PATCH] xen,credit1: Add variable timeslice
...the timeslice of the credit1 scheduler. Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com> diff -r 4a4882df5649 -r 782284c5b1bc xen/common/sched_credit.c --- a/xen/common/sched_credit.c Wed Aug 31 15:23:49 2011 +0100 +++ b/xen/common/sched_credit.c Thu Sep 01 16:29:50 2011 +0100 @@ -41,15 +41,9 @@ */ #define CSCHED_DEFAULT_WEIGHT 256 #define CSCHED_TICKS_PER_TSLICE 3 -#define CSCHED_TICKS_PER_ACCT 3 -#define CSCHED_MSECS_PER_TICK 10 -#define CSCHED_MSECS_PER_TSLICE \ - (CSCHED_MSECS_PER_TICK * CSCHED_TICKS_PER_TSLICE) +/* Default timeslice: 30ms *...
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...les should be already there. > --- > po-docs/Makefile.am | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/po-docs/Makefile.am b/po-docs/Makefile.am > index a274898..bf10558 100644 > --- a/po-docs/Makefile.am > +++ b/po-docs/Makefile.am > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > # language directory contains a Makefile.am that we need to keep up to > # date (note each $lang/Makefile.am should be identical). > # XXX Is there a better way? > -SUBDIRS = $(linguas) > +# The current directory is traversed first, to make sure...
2012 Jun 28
1
Bug#634890: klibc issues on armhf (not Debian/armel)
On Tue, 19 Jun 2012, Steve McIntyre wrote: > > More debugging results: > > * If I replace -Os with -O0 to disable optimisation, the crash goes > away too. Suggests (maybe) a compiler bug here... nasty. :| > * There's a real bug in the ARM assembly version of longjmp in > usr/klibc/arch/arm/setjmp.S: it will always pass back its first > argument as a
2014 Oct 05
0
[PATCH 07/16] virtio-blk: drop config_mutex
...off-by: Michael S. Tsirkin <mst at redhat.com> --- drivers/block/virtio_blk.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index c8cf6a1..13c384b 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -41,9 +41,6 @@ struct virtio_blk /* Process context for config space updates */ struct work_struct config_work; - /* Lock for config space updates */ - struct mutex config_lock; - /* What host tells us, plus 2 for header & tailer. */ unsigned int sg_elems; @@ -344,8 +341,6 @@ static voi...
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...+++- > > > 1 file changed, 5 insertions(+), 1 deletion(-) > > > > > > diff --git a/po-docs/Makefile.am b/po-docs/Makefile.am > > > index a274898..bf10558 100644 > > > --- a/po-docs/Makefile.am > > > +++ b/po-docs/Makefile.am > > > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > > > # language directory contains a Makefile.am that we need to keep up to > > > # date (note each $lang/Makefile.am should be identical). > > > # XXX Is there a better way? > > > -SUBDIRS = $(linguas) > > > +# The...
2012 Jul 01
2
[klibc:master] arm/setjmp.S: fix longjmp
...attems <max at stro.at> --- usr/klibc/arch/arm/setjmp.S | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/usr/klibc/arch/arm/setjmp.S b/usr/klibc/arch/arm/setjmp.S index 6018bda..d351e0e 100644 --- a/usr/klibc/arch/arm/setjmp.S +++ b/usr/klibc/arch/arm/setjmp.S @@ -41,7 +41,9 @@ setjmp: longjmp: ldmia r0, {r4, r5, r6, r7, r8, r9, r10, fp, sp, lr} mov r0, r1 - BX(lr) + bne 1f + mov r0, #1 +1: BX(lr) .size longjmp,.-longjmp #else /* __thumb__ */
2018 Oct 01
2
[PATCH nbdkit] plugins: Add scripting language version to --dump-plugin output.
..._abi_version=%d\n", PYTHON_ABI_VERSION); +#endif + if (script && callback_defined ("dump_plugin", &fn)) { PyErr_Clear (); diff --git a/plugins/ruby/ruby.c b/plugins/ruby/ruby.c index aa57f65..a3d7a42 100644 --- a/plugins/ruby/ruby.c +++ b/plugins/ruby/ruby.c @@ -41,6 +41,9 @@ #include <nbdkit-plugin.h> #include <ruby.h> +#ifdef HAVE_RUBY_VERSION_H +#include <ruby/version.h> +#endif static VALUE nbdkit_module = Qnil; static int last_error; @@ -168,6 +171,17 @@ plugin_rb_unload (void) static void plugin_rb_dump_plugin (void) { +#ifd...
2016 Sep 10
0
[PATCH] gm107: separate out sched decoding from regular ops
...| 2 +- envydis/core-dis.c | 5 ++++- envydis/gm107.c | 18 ++++++++++++++++-- include/dis.h | 3 +++ 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/envydis/core-as.c b/envydis/core-as.c index ce87653..ee9cd21 100644 --- a/envydis/core-as.c +++ b/envydis/core-as.c @@ -741,7 +741,7 @@ struct matches *do_as(const struct disisa *isa, struct varinfo *varinfo, struct struct iasctx c = { isa, varinfo }; struct iasctx *ctx = &c; convert_insn(ctx, insn); - struct matches *m = atomtab_a(ctx, isa->troot, 0); + struct matches *m = atomtab_a(ctx, isa->trootas ?:...