search for: 361,7

Displaying 20 results from an estimated 139 matches for "361,7".

Did you mean: 301,7
2020 Aug 18
1
[PATCH] use "--just-symbols" for compatibility with LLD
...ld with lld). Signed-off-by: Bill Wendling <morbo at google.com> --- scripts/Kbuild.klibc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc index 82c74ea7..bfe6edb3 100644 --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -361,7 +361,7 @@ quiet_cmd_ld-shared = KLIBCLD $@ $(KLIBCEMAIN) $(KLIBCCRTSHARED) \ --start-group \ $(link-deps) \ - -R $(KLIBCLIBCSHARED) \ + --just-symbols $(KLIBCLIBCSHARED) \...
2015 Sep 29
0
[PATCH 1/2] bios: Fix alignment change with gcc 5
...e/i386/syslinux.ld b/core/i386/syslinux.ld index 7b4e012..7390451 100644 --- a/core/i386/syslinux.ld +++ b/core/i386/syslinux.ld @@ -266,7 +266,7 @@ SECTIONS __text_end = .; } - . = ALIGN(16); + . = ALIGN(32); __rodata_vma = .; __rodata_lma = __rodata_vma + __text_lma - __text_vma; @@ -361,7 +361,7 @@ SECTIONS __dynamic_end = .; } - . = ALIGN(16); + . = ALIGN(32); __data_vma = .; __data_lma = __data_vma + __text_lma - __text_vma; @@ -377,7 +377,7 @@ SECTIONS __pm_code_dwords = (__pm_code_len + 3) >> 2; . = ALIGN(128); - + __bss_vma = .; __bss_lma = .; /...
2009 Nov 09
1
[PATCH libguestfs] avoid "syntax-check" failure
...estmount.c index 910ec34..04a6a29 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -339,7 +339,7 @@ fg_access (const char *path, int mask) static int fg_readlink (const char *path, char *buf, size_t size) { - const char *r; + char *r; int free_it = 0; r = rlc_lookup (path); @@ -361,7 +361,7 @@ fg_readlink (const char *path, char *buf, size_t size) buf[len] = '\0'; if (free_it) - free ((char *) r); + free (r); return 0; } -- 1.6.5.2.351.g0943
2015 Sep 29
10
[PATCH 0/2] Fixes for gcc 5
From: Sylvain Gault <sylvain.gault at gmail.com> TL;DR: The section aligment in linker scripts messed-up the memory mapping needed for the compression / decompression to work. The bug with gcc 5 is not trivial, I'll do my best to explain it here. Basically, there are two memory mappings of the code. One in "virtual memory", and one in "load memory". The one in
2009 May 04
1
[PATCH] oggz: inefficient seeking
...offset_guess = offset_end; + } + offset_at = oggz_seek_raw (oggz, offset_guess, SEEK_SET); if (offset_at == -1) { goto notfound; diff --git a/src/tools/oggz-dump.c b/src/tools/oggz-dump.c index fc7e3ba..56c5eb6 100644 --- a/src/tools/oggz-dump.c +++ b/src/tools/oggz-dump.c @@ -361,7 +361,7 @@ revert_packet (OGGZ * oggz, ogg_packet * op, long serialno, int flush) #ifdef DEBUG printf ("feeding packet (%010lu) %ld bytes %s, %s\n", - current_serialno, op->bytes, + serialno, op->bytes, op->b_o_s ? "bos" : "not b...
2013 Feb 07
8
[RFC] Btrfs: Allow the compressed extent size limit to be modified v2
...max_uncompressed = 128 * 1024; + unsigned long max_compressed = root->fs_info->max_compressed_extent_kb * 1024; + unsigned long max_uncompressed = root->fs_info->max_compressed_extent_kb * 1024; int i; int will_compress; int compress_type = root->fs_info->compress_type; @@ -361,7 +361,7 @@ static noinline int compress_file_range(struct inode *inode, again: will_compress = 0; nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1; - nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE); + nr_pages = min(nr_pages, max_compressed / PAGE_...
2009 Oct 26
1
[PATCH] Fix miscompile of SSE resampler
...ur. --- libspeex/resample.c | 8 ++++---- libspeex/resample_sse.h | 24 ++++++++---------------- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/libspeex/resample.c b/libspeex/resample.c index 7b5a308..8131380 100644 --- a/libspeex/resample.c +++ b/libspeex/resample.c @@ -361,7 +361,7 @@ static int resampler_basic_direct_single(SpeexResamplerState *st, spx_uint32_t c sum = accum[0] + accum[1] + accum[2] + accum[3]; */ #else - sum = inner_product_single(sinc, iptr, N); + inner_product_single(&sum, sinc, iptr, N); #endif out[out_stride * o...
2018 Apr 27
4
[PATCH] allow indefinite ForwardX11Timeout by setting it to 0
...= UINT_MAX; else x11_timeout_real = timeout + X11_TIMEOUT_SLACK; + if ((r = snprintf(cmd, sizeof(cmd), "%s -f %s generate %s " SSH_X11_PROTO " untrusted timeout %u 2>" _PATH_DEVNULL, @@ -355,7 +361,7 @@ client_x11_get_proto(struct ssh *ssh, const char *display, (size_t)r >= sizeof(cmd)) fatal("%s: cmd too long", __func__); debug2("%s: %s", __func__, cmd); - if (x11_refuse_time == 0) { + if (timeout...
2020 Aug 20
0
[klibc:master] use "--just-symbols" for compatibility with LLD
...le.com> Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- scripts/Kbuild.klibc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc index 82c74ea7..bfe6edb3 100644 --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -361,7 +361,7 @@ quiet_cmd_ld-shared = KLIBCLD $@ $(KLIBCEMAIN) $(KLIBCCRTSHARED) \ --start-group \ $(link-deps) \ - -R $(KLIBCLIBCSHARED) \ + --just-symbols $(KLIBCLIBCSHARED) \...
2017 Jun 30
1
[PATCH] Fix typos in plugin manual
...uld call C<nbdkit_error> with an error message and return C<-1>. -This callback is not required. If omitted, then we return true iff a +This callback is not required. If omitted, then we return true if a C<.pwrite> callback has been defined. =head2 C<.can_flush> @@ -361,7 +361,7 @@ handle supports the flush-to-disk operation. If there is an error, C<.can_flush> should call C<nbdkit_error> with an error message and return C<-1>. -This callback is not required. If omitted, then we return true iff a +This callback is not required. If omitted,...
2007 Jun 07
0
2 commits - libswfdec/js libswfdec/swfdec_js_movie.c
...Thu Jun 7 19:10:32 2007 +0200 there shouldn't be an assertion here, but a debug error fixes Gnome #443357 diff --git a/libswfdec/swfdec_js_movie.c b/libswfdec/swfdec_js_movie.c index 53fb5d9..12e378e 100644 --- a/libswfdec/swfdec_js_movie.c +++ b/libswfdec/swfdec_js_movie.c @@ -361,7 +361,7 @@ mc_hitTest (JSContext *cx, JSObject *obj *rval = BOOLEAN_TO_JSVAL (JS_FALSE); } } else if (argc == 3) { - g_assert_not_reached (); + SWFDEC_ERROR ("hitTest with 3 arguments not implemented"); } else { return JS_FALSE; } diff-tree 49a712856eb2ac8...
2015 Mar 14
1
[PATCH ddx] Add support for VRAM-less devices to the ddx
...int w, int h, goto memcpy; if (!NVAccelM2MF(pNv, w, lines, cpp, 0, tmp_offset, - nouveau_pixmap_bo(pspix), NOUVEAU_BO_VRAM, + nouveau_pixmap_bo(pspix), NOUVEAU_BO_APER, src_pitch, pspix->drawable.height, x, y, tmp, NOUVEAU_BO_GART, tmp_pitch, lines, 0, 0)) @@ -361,7 +361,7 @@ nouveau_exa_upload_to_screen(PixmapPtr pdpix, int x, int y, int w, int h, if (!NVAccelM2MF(pNv, w, lines, cpp, tmp_offset, 0, tmp, NOUVEAU_BO_GART, tmp_pitch, lines, 0, 0, - nouveau_pixmap_bo(pdpix), NOUVEAU_BO_VRAM, + nouveau_pixmap_bo(pdpix), NOUVEAU_BO_APER,...
2006 Oct 05
0
[Bug 521] New: [patch] - some changes to runme script
...tch fails, it shows you exactly which file caused the failure. 2. When there are backup files (ending with ~ or beginning with #) they are ignored by POM. --- ../patch-o-matic-ng-trunk/Netfilter_POM.pm 2006-10-03 08:21:19.000000000 -0700 +++ Netfilter_POM.pm 2006-10-03 10:58:03.000000000 -0700 @@ -361,7 +361,7 @@ opendir(DIR, $dir) or croak "can't open directory $dir: $!"; # Don't miss .foo-test files! - my @dents = sort grep {!/^(\.\.?|CVS|\.svn)$/} readdir(DIR); + my @dents = sort grep {!/^(\.\.?|CVS|\.svn|#?.*~)$/} readdir(DIR); closedir(DIR); foreach my $dent (@d...
2012 Feb 05
5
[PATCH] Automatically select 0xe9 as default debug port if configured for Xen
...commit 7123d9834d58287d43514d7799ed1a7b34eea243 Signed-off-by: Julian Pidancet <julian.pidancet@gmail.com> --- src/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/Kconfig b/src/Kconfig index cf0bff0..cee0005 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -361,6 +361,7 @@ menu "Debugging" config DEBUG_IO_PORT depends on DEBUG_IO hex "Debug IO port address" + default 0x00e9 if XEN default 0x0402 help Bochs uses the 0x0402 address by default, whereas Xen -- Julian Pidancet
2008 Feb 11
1
[PATCH] virtio_net: Fix oops on early interrupts - introduced by virtio reset code
...r <borntraeger@de.ibm.com> --- drivers/net/virtio_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: kvm/drivers/net/virtio_net.c =================================================================== --- kvm.orig/drivers/net/virtio_net.c +++ kvm/drivers/net/virtio_net.c @@ -361,6 +361,7 @@ static int virtnet_probe(struct virtio_d netif_napi_add(dev, &vi->napi, virtnet_poll, napi_weight); vi->dev = dev; vi->vdev = vdev; + vdev->priv = vi; /* We expect two virtqueues, receive then send. */ vi->rvq = vdev->config->find_vq(vdev, 0, skb_rec...
2008 Feb 11
1
[PATCH] virtio_net: Fix oops on early interrupts - introduced by virtio reset code
...r <borntraeger@de.ibm.com> --- drivers/net/virtio_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: kvm/drivers/net/virtio_net.c =================================================================== --- kvm.orig/drivers/net/virtio_net.c +++ kvm/drivers/net/virtio_net.c @@ -361,6 +361,7 @@ static int virtnet_probe(struct virtio_d netif_napi_add(dev, &vi->napi, virtnet_poll, napi_weight); vi->dev = dev; vi->vdev = vdev; + vdev->priv = vi; /* We expect two virtqueues, receive then send. */ vi->rvq = vdev->config->find_vq(vdev, 0, skb_rec...
2007 May 03
3
[PATCH] pygrub: look harder for elilo.conf
...eck for other distributions, plus a couple fallback locations. Signed-off-by: Aron Griffis <aron@hp.com> diff -r 6d64f9eefad5 -r 67df28389f46 tools/pygrub/src/pygrub --- a/tools/pygrub/src/pygrub Wed May 02 14:50:56 2007 -0400 +++ b/tools/pygrub/src/pygrub Wed May 02 22:39:12 2007 -0400 @@ -361,7 +361,12 @@ class Grub: if platform.machine() == ''ia64'': self.cf = grub.LiloConf.LiloConfigFile() - file_list = ("/efi/redhat/elilo.conf",) + # common distributions + file_list = ("/efi/debian/elilo.conf&quot...
1999 Nov 13
0
patches for alpha
...if the move from const char* to char* breaks something. I also don't know why const char* did not work. My bison is root@delta[src]# bison -V GNU Bison version 1.25 --- ./src/include/Rinternals.h.alpha-patch Sun Sep 12 17:41:57 1999 +++ ./src/include/Rinternals.h Sun Sep 12 17:43:37 1999 @@ -361,7 +361,7 @@ SEXP matchArgs(SEXP, SEXP); SEXP matchPar(char*, SEXP*); SEXP mkChar(const char*); -SEXP mkString(const char*); +SEXP mkString(char*); SEXP namesgets(SEXP, SEXP); int ncols(SEXP); int nrows(SEXP); --- ./src/main/gram.y.alpha-patch Tue Aug 10 10:56:17 1999 +++ ./src/main/gram.y Sun...
2015 Jun 18
1
[PATCH] error log: keep more calloc and its error messages match
...(struct drv)); if (!drv) { - perror ("malloc"); + perror ("calloc"); exit (EXIT_FAILURE); } drv->type = drv_d; diff --git a/fish/fish.c b/fish/fish.c index 714a13c..c37368e 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -361,7 +361,7 @@ main (int argc, char *argv[]) } drv = calloc (1, sizeof (struct drv)); if (!drv) { - perror ("malloc"); + perror ("calloc"); exit (EXIT_FAILURE); } drv->type = drv_N; @@ -449,7 +449,7 @@ main (int argc, cha...
2004 Jul 20
3
Bug? 1.0.0-test28 NFS locking problems
...< 0) { if (timeout == 0 && (errno == EACCES || errno == EAGAIN)) return 0; --- dovecot-1.0-test28/src/lib-storage/index/mbox/mbox-lock.c.orig 2004-07-20 14:29:54.000000000 +0100 +++ dovecot-1.0-test28/src/lib-storage/index/mbox/mbox-lock.c 2004-07-20 14:30:35.000000000 +0100 @@ -361,7 +361,7 @@ fl.l_start = 0; fl.l_len = 0; - wait_type = max_wait_time == 0 ? F_SETLK : F_SETLKW; + wait_type = max_wait_time == 0 ? F_SETLK : F_SETLK; while (fcntl(ctx->ibox->mbox_fd, wait_type, &fl) < 0) { if (errno != EINTR) { if (errno != EAGAIN &&am...