search for: 21,6

Displaying 20 results from an estimated 678 matches for "21,6".

Did you mean: 1,6
2019 Oct 17
2
Static assert fails when compiler for i386
...oes smooth when compile for x86_64. Following changes fixes this. diff --git a/clang/lib/Headers/__stddef_max_align_t.h b/clang/lib/Headers/__stddef_max_align_t.h index e3b439285d0..46f705a09c3 100644 --- a/clang/lib/Headers/__stddef_max_align_t.h +++ b/clang/lib/Headers/__stddef_max_align_t.h @@ -21,6 +21,10 @@ typedef struct { __attribute__((__aligned__(__alignof__(long long)))); long double __clang_max_align_nonce2 __attribute__((__aligned__(__alignof__(long double)))); + #ifdef __i386__ + typedef double xx __attribute__((vector_size(16))); + xx __clang_max_align_nonce3...
2016 Dec 07
2
Re: [PATCH v3] v2v: -o vdsm: Add --vdsm-compat flag. -o rhev: Drop support for RHV < 4.1 (RHBZ#1400205).
...d. > > Thanks: Yaniv Kaul, Michal Skrivanek. > --- LGTM, just one note below. > diff --git a/v2v/test-v2v-o-vdsm-options.sh b/v2v/test-v2v-o-vdsm-options.sh > index 3b7eaae..1de0e17 100755 > --- a/v2v/test-v2v-o-vdsm-options.sh > +++ b/v2v/test-v2v-o-vdsm-options.sh > @@ -21,6 +21,7 @@ > unset CDPATH > export LANG=C > set -e > +set -x This should be left out, I guess. Thanks, -- Pino Toscano
2013 Mar 13
2
How to read a *.csv file in R?
Hey guys, I am dealing with this kind of data. To read the file in R I have nulled all empty fields and tried: date BRENT BRENTchg HWWI HWWIchg Jan. 86 22,5 NULL 68,1 -15,6 Feb.86 17 NULL 64,9 -21,6 Mar. 86 13,7 NULL 66,6 -19,5 Apr.86 12,3 NULL 63,6 -19,1 May 86 14 NULL 61,5 -20,9 June 86 11,8 NULL 59,8 -20,7 July 86 9,4 NULL 57,2 -19,3 Aug.86 13,2 NULL 55,5 -18,3 Sep.86 14,2 NULL 57,5 -15,1 Oct. 86 13,7 NULL 55,5 -14,1 Nov.86 14,4 NULL 54,9 -14,9 Dec. 86 15,7 NULL 52,9 -26,4 Jan. 87 18,3 -1...
2015 Jul 23
1
[PATCH] appliance: Exclude /usr/lib/modules as well as /lib/modules.
...39;supermin --build' will copy back the host kernel modules. --- appliance/excludefiles.in | 1 + 1 file changed, 1 insertion(+) diff --git a/appliance/excludefiles.in b/appliance/excludefiles.in index 574c828..181b182 100644 --- a/appliance/excludefiles.in +++ b/appliance/excludefiles.in @@ -21,6 +21,7 @@ dnl Of course, this may break the appliance, so be careful. dnl The right kernel modules are added back by supermin. -/boot/* -/lib/modules/* +-/usr/lib/modules/* dnl Firmware blobs should not be required by a virtual machine. dnl Because of UsrMove nonsense, we need to list both...
2015 Sep 30
1
Re: [PATCH 4/4] lib: Remove unused header files.
...ptember 2015 22:06:13 Richard W.M. Jones wrote: > I used ESR's deheader program to look for unused includes. I then > examined each instance by hand, and also test-compiled (on Linux). Mostly LGTM, there just a couple of notes below: > --- a/src/fuse.c > +++ b/src/fuse.c > @@ -21,7 +21,6 @@ > #include <stdio.h> > #include <stdlib.h> > #include <unistd.h> > -#include <errno.h> EINVAL is used here. > --- a/src/launch-direct.c > +++ b/src/launch-direct.c > @@ -31,8 +30,6 @@ > #include <sys/stat.h> > #include <s...
2015 Oct 05
1
[PATCH] Revert "lib: Don't need to include <rpc/types.h>."
.../man3/xdr.3.html This reverts commit ada85d15669886f0456ffecf1b13fc7a7df38e5c. --- src/guestfs-internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index 113705d..72f9968 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -21,6 +21,7 @@ #include <stdbool.h> +#include <rpc/types.h> /* Needed on libc's different than glibc. */ #include <rpc/xdr.h> #include <pcre.h> -- 2.1.0
2018 Jan 29
1
[PATCH] customize: Correctly handle crypt(3) returning NULL.
...l return NULL / errno == ENOSYS and other implementations might do that in future too. --- customize/crypt-c.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/customize/crypt-c.c b/customize/crypt-c.c index d5425cfaa..e358018cd 100644 --- a/customize/crypt-c.c +++ b/customize/crypt-c.c @@ -21,6 +21,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <errno.h> #if HAVE_CRYPT_H #include <crypt.h> @@ -29,6 +30,7 @@ #include <caml/alloc.h> #include <caml/memory.h> #include <caml/mlvalues.h> +#include <caml/un...
2010 Jul 14
1
[PATCH] gfxboot: fix buffer overrun when loading kernel/initramfs
...off-by: Colin Watson <cjwatson at ubuntu.com> --- com32/gfxboot/gfxboot.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c index dd4d641..0fbfadd 100644 --- a/com32/gfxboot/gfxboot.c +++ b/com32/gfxboot/gfxboot.c @@ -21,6 +21,7 @@ #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> +#include <minmax.h> #include <syslinux/loadfile.h> #include <syslinux/config.h> @@ -749,7 +750,7 @@ void *load_one(char *file, ssize_t *file_size) if(size) { buf = malloc(s...
2019 Sep 25
2
[p2v PATCH] Document the root password for the disk images.
...--- virt-p2v-make-disk.pod | 2 ++ virt-p2v-make-kickstart.pod | 2 ++ virt-p2v-make-kiwi.pod | 2 ++ 3 files changed, 6 insertions(+) diff --git a/virt-p2v-make-disk.pod b/virt-p2v-make-disk.pod index a15aaad..dec92c4 100644 --- a/virt-p2v-make-disk.pod +++ b/virt-p2v-make-disk.pod @@ -21,6 +21,8 @@ The required I<-o> parameter specifies where the output should go, for example to a USB key (eg. C<-o /dev/sdX>) or to a file. If you pass a device name, then B<the existing contents of the device will be erased>. +The password of the root user on the disk image is...
2006 Jul 03
1
RE: [dovecot-cvs] dovecot/src/lib-storage/index index-mail.c, 1.102, 1.103
...============== > RCS file: /var/lib/cvs/dovecot/src/lib-storage/index/index-mail.c,v > retrieving revision 1.102 > retrieving revision 1.103 > diff -u -d -r1.102 -r1.103 > --- index-mail.c 29 Jun 2006 11:08:55 -0000 1.102 > +++ index-mail.c 3 Jul 2006 11:12:15 -0000 1.103 > @@ -21,6 +21,8 @@ > sizeof(struct mail_sent_date), 0 }, > { "date.received", 0, MAIL_CACHE_FIELD_FIXED_SIZE, > sizeof(time_t), 0 }, > + { "date.save", 0, MAIL_CACHE_FIELD_FIXED_SIZE, > + sizeof(time_t), 0 }, > { "size.virtual", 0, MAIL_CACHE_FIELD_FIXED_SI...
2019 Sep 25
1
Re: [p2v PATCH] Document the root password for the disk images.
...++ >> virt-p2v-make-kiwi.pod | 2 ++ >> 3 files changed, 6 insertions(+) >> >> diff --git a/virt-p2v-make-disk.pod b/virt-p2v-make-disk.pod >> index a15aaad..dec92c4 100644 >> --- a/virt-p2v-make-disk.pod >> +++ b/virt-p2v-make-disk.pod >> @@ -21,6 +21,8 @@ The required I<-o> parameter specifies where the output should go, for >> example to a USB key (eg. C<-o /dev/sdX>) or to a file. If you pass a >> device name, then B<the existing contents of the device will be erased>. >> >> +The passwor...
2009 Mar 10
1
[LLVMdev] 2.5 Pre-release1 available for testing
...ion later in the class are the same size. I tested this on ppc64 and x86_64. Index: include/llvm/CodeGen/ValueTypes.h =================================================================== --- include/llvm/CodeGen/ValueTypes.h (revision 66504) +++ include/llvm/CodeGen/ValueTypes.h (working copy) @@ -21,6 +21,8 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/MathExtras.h" +static const uintptr_t minus_one = -1; + namespace llvm { class Type; @@ -92,7 +94,10 @@ iPTR = 255, // LastSimpleValueType - The greatest valid SimpleVal...
2017 Mar 22
2
[PATCH] inspect: improve detection of Mageia install discs
...will not be available on other distros. --- lib/inspect-fs-cd.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/lib/inspect-fs-cd.c b/lib/inspect-fs-cd.c index 278386e..9c809b4 100644 --- a/lib/inspect-fs-cd.c +++ b/lib/inspect-fs-cd.c @@ -21,6 +21,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <libintl.h> +#include <inttypes.h> #ifdef HAVE_ENDIAN_H #include <endian.h> @@ -432,10 +434,72 @@ check_w2k3_installer_root (guestfs_h *g, struct inspect_fs *fs, return 0;...
2012 Dec 21
2
more compiler safety flags
...supported? Index: aclocal.m4 =================================================================== RCS file: /home/dtucker/openssh/cvs/openssh/aclocal.m4,v retrieving revision 1.8 diff -u -p -r1.8 aclocal.m4 --- aclocal.m4 20 May 2011 01:45:25 -0000 1.8 +++ aclocal.m4 17 Dec 2012 03:56:32 -0000 @@ -21,6 +21,23 @@ AC_DEFUN([OSSH_CHECK_CFLAG_COMPILE], [{ ) }]) +dnl OSSH_CHECK_CFLAG_LINK(check_flag[, define_flag]) +dnl Check that $LD accepts a flag 'check_flag'. If it is supported append +dnl 'define_flag' to $LDFLAGS. If 'define_flag' is not specified, then append +dnl...
2004 Apr 27
2
build problem on SuSE SLES 8 SP3 (s390) - struct statfs redefinition?
...from /usr/include/linux/vfs.h:4, from /usr/include/linux/fs.h:13, from /usr/include/linux/capability.h:17, from /usr/include/sys/capability.h:24, from include/includes.h:355, from dynconfig.c:21: /usr/include/asm-s390/statfs.h:20: redefinition of `struct statfs' make: *** [dynconfig.o] Error 1 Same thing for 3.0.2a, 3.0.3pre2 and 3.0.3rc1 (didn't try others) Any idea, anyone? Best regards Thomas
2008 Sep 19
8
[PATCH] x86: add hypercall to query current underlying pCPU''s frequency
...Index: 2008-09-19/xen/arch/x86/platform_hypercall.c =================================================================== --- 2008-09-19.orig/xen/arch/x86/platform_hypercall.c 2008-09-19 14:12:02.000000000 +0200 +++ 2008-09-19/xen/arch/x86/platform_hypercall.c 2008-09-19 14:12:56.000000000 +0200 @@ -21,7 +21,7 @@ #include <xen/acpi.h> #include <asm/current.h> #include <public/platform.h> -#include <acpi/cpufreq/processor_perf.h> +#include <acpi/cpufreq/cpufreq.h> #include <asm/edd.h> #include <asm/mtrr.h> #include "cpu/mtrr/mtrr.h" @@ -55,...
2012 Feb 03
1
[PATCH] Include inttypes.h for PRIu64
...> #include <stdlib.h> #include <string.h> diff --git a/src/metaflac/operations_shorthand_cuesheet.c b/src/metaflac/operations_shorthand_cuesheet.c index f414235..dadb53b 100644 --- a/src/metaflac/operations_shorthand_cuesheet.c +++ b/src/metaflac/operations_shorthand_cuesheet.c @@ -21,6 +21,9 @@ #endif #include <errno.h> +#if HAVE_INTTYPES_H +#include <inttypes.h> +#endif #include <stdio.h> /* for snprintf() */ #include <string.h> #include "options.h" diff --git a/src/metaflac/operations_shorthand_streaminfo.c b/src/metaflac/operations_sh...
2011 Apr 13
1
[PATCH libguestfs] include string.h and libintl.h, as needed
...3 ++- df/main.c | 4 +++- df/output.c | 3 ++- fuse/guestmount.c | 1 + inspector/virt-inspector.c | 2 ++ rescue/virt-rescue.c | 4 +++- 6 files changed, 13 insertions(+), 4 deletions(-) diff --git a/df/df.c b/df/df.c index c2db970..8821d68 100644 --- a/df/df.c +++ b/df/df.c @@ -1,5 +1,5 @@ /* virt-df - * Copyright (C) 2010 Red Hat Inc. + * Copyright (C) 2010-2011 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21...
2013 Aug 28
7
[PATCH] x86/apic: remove DMI checks in bigsmp driver for obsolete systems
The DMI checks that force the use of the bigsmp APIC driver are for systems that are no longer supported by Xen (32-bit x86). Signed-off-by: Matt Wilson <msw@amazon.com> Cc: Keir Fraser <keir@xen.org> Cc: Jan Beulich <jbeulich@suse.com> Cc: Andrew Cooper <andrew.cooper3@citrix.com> --- xen/arch/x86/genapic/bigsmp.c | 30 +----------------------------- 1 files changed, 1
2017 Mar 22
1
[PATCH v2] inspect: improve detection of Mageia install discs
...ding using guestfs_int_first_line_of_file lib/inspect-fs-cd.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/lib/inspect-fs-cd.c b/lib/inspect-fs-cd.c index 278386e..1cff560 100644 --- a/lib/inspect-fs-cd.c +++ b/lib/inspect-fs-cd.c @@ -21,6 +21,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <libintl.h> +#include <inttypes.h> #ifdef HAVE_ENDIAN_H #include <endian.h> @@ -432,10 +434,58 @@ check_w2k3_installer_root (guestfs_h *g, struct inspect_fs *fs, return 0;...