search for: 18,6

Displaying 20 results from an estimated 585 matches for "18,6".

Did you mean: 1,6
2013 Mar 13
2
How to read a *.csv file in R?
...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 -18,67 49,8 -26,87 Feb.87 17,3 1,76 49,9 -23,11 Mar. 87 17,8 29,93 49,7 -25,38 Apr.87 18 46,34 50,5 -20,6 May 87 18,6 32,86 52,3 -14,96 June 87 18,8 59,32 53,5 -10,54 Jul...
2015 Feb 10
1
Missing make dependencies?
...les/hello.c32 and com32/rosh/rosh.c32. I'm not a make expert, but I think it's due to missing dependencies. This patch seems to fix my failures, but I'm wondering (if my analysis is correct) if there are a few more missing. diff --git a/com32/Makefile b/com32/Makefile index c5784be..b18414f 100644 --- a/com32/Makefile +++ b/com32/Makefile @@ -18,6 +18,6 @@ gfxboot: lib libutil gpllib hdt: lib libupload cmenu gpllib libutil lua/src: cmenu modules modules: lib libutil gpllib -rosh: lib libutil -samples: libutil elflink/ldlinux +rosh: lib libutil gpllib +samples: libutil elflink/l...
2020 Apr 26
3
[PATCH V2 1/2] vdpa: Support config interrupt in vhost_vdpa
...break; > } > - ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd); > + ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd); > if (IS_ERR(ctx)) { > r = PTR_ERR(ctx); > break; > diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h > index 1813821..8663139 100644 > --- a/drivers/vhost/vhost.h > +++ b/drivers/vhost/vhost.h > @@ -18,6 +18,8 @@ > typedef void (*vhost_work_fn_t)(struct vhost_work *work); > > #define VHOST_WORK_QUEUED 1 > +#define VHOST_FILE_UNBIND -1 I think it's better to document this in...
2020 Apr 26
3
[PATCH V2 1/2] vdpa: Support config interrupt in vhost_vdpa
...break; > } > - ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd); > + ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd); > if (IS_ERR(ctx)) { > r = PTR_ERR(ctx); > break; > diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h > index 1813821..8663139 100644 > --- a/drivers/vhost/vhost.h > +++ b/drivers/vhost/vhost.h > @@ -18,6 +18,8 @@ > typedef void (*vhost_work_fn_t)(struct vhost_work *work); > > #define VHOST_WORK_QUEUED 1 > +#define VHOST_FILE_UNBIND -1 I think it's better to document this in...
2008 Apr 16
1
[PATCH] add virtio disk geometry feature
...e VIRTIO_BLK_F_BARRIER 0 /* Does host support barriers? */ #define VIRTIO_BLK_F_SIZE_MAX 1 /* Indicates maximum segment size */ #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */ +#define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ struct virtio_blk_config { @@ -18,6 +19,12 @@ struct virtio_blk_config __le32 size_max; /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */ __le32 seg_max; + /* cylinders of the device (if VIRTIO_BLK_F_GEOMETRY) */ + __le16 cylinders; + /* heads of the device (if VIRTIO_BLK_F_GEOMETRY) */ + __u8 heads; + /* sectors...
2008 Apr 16
1
[PATCH] add virtio disk geometry feature
...e VIRTIO_BLK_F_BARRIER 0 /* Does host support barriers? */ #define VIRTIO_BLK_F_SIZE_MAX 1 /* Indicates maximum segment size */ #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */ +#define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ struct virtio_blk_config { @@ -18,6 +19,12 @@ struct virtio_blk_config __le32 size_max; /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */ __le32 seg_max; + /* cylinders of the device (if VIRTIO_BLK_F_GEOMETRY) */ + __le16 cylinders; + /* heads of the device (if VIRTIO_BLK_F_GEOMETRY) */ + __u8 heads; + /* sectors...
2011 Dec 13
8
[PATCH] xenpaging: remove XOPEN_SOURCE
...l to remove this only under NetBSD. Signed-off-by: Roger Pau Monne <roger.pau@entel.upc.edu> diff -r 8a84f5337686 -r 7697ee23b08b tools/xenpaging/xenpaging.c --- a/tools/xenpaging/xenpaging.c Tue Dec 13 09:49:55 2011 +0100 +++ b/tools/xenpaging/xenpaging.c Tue Dec 13 10:22:09 2011 +0100 @@ -18,7 +18,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#define _XOPEN_SOURCE 600 #define _GNU_SOURCE #include <inttypes.h>
2009 Jul 03
1
[LLVMdev] Current SVN: Compile error on Fedora 11 Linux/x64-gcc 4.40
Hi, I need to add a missing include to get current SVN to compile. --- CodeGen/BinaryObject.h (revision 74762) +++ CodeGen/BinaryObject.h (working copy) @@ -18,6 +18,9 @@ #include <string> #include <vector> +#include <stdint.h> + + namespace llvm { My system does not know about uint8_t without this include file. Kind regards, Maurice -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.ll...
2020 Apr 26
1
[PATCH V2 1/2] vdpa: Support config interrupt in vhost_vdpa
On 4/26/2020 3:03 PM, Jason Wang wrote: > > On 2020/4/26 ??2:58, Jason Wang wrote: >>> >>> diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h >>> index 1813821..8663139 100644 >>> --- a/drivers/vhost/vhost.h >>> +++ b/drivers/vhost/vhost.h >>> @@ -18,6 +18,8 @@ >>> ? typedef void (*vhost_work_fn_t)(struct vhost_work *work); >>> ? ? #define VHOST_WORK_QUEUED 1 >>> +#define VHOST_FILE_UNBIND -1 >...
2005 Dec 15
1
Breaking the 256 command line limit
I'm building pxe-booted kiosk systems using pxelinux 3.09 and linux kernel 2.6.14. I noticed a discussion on this list that 3.09 supports a 511 character command line but that the kernel would need to be patched to access it beyond 255. How can I patch the kernel to do so? Andrew Lambe Systems Programmer Information Technology Oral Roberts University Tulsa, Oklahoma
2009 Dec 21
1
[PATCH] po: Include fr.po in MANIFEST
--- MANIFEST | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/MANIFEST b/MANIFEST index 13897af..3489ff1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -18,6 +18,7 @@ MANIFEST This list of files MANIFEST.SKIP META.yml po/es.po +po/fr.po po/it.po po/Makefile po/PACKAGE -- 1.6.5.2
2010 Mar 12
1
[PATCH 3/3] libdrm: Move all noninstalled headers to noinst_HEADERS.
...sts.freedesktop.org Signed-off-by: Pauli Nieminen <suokkos at gmail.com> --- Makefile.am | 6 +++--- intel/Makefile.am | 10 ++++++---- nouveau/Makefile.am | 4 +++- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Makefile.am b/Makefile.am index e434e1d..61da186 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,13 +55,13 @@ libdrm_la_SOURCES = \ xf86drmHash.c \ xf86drmRandom.c \ xf86drmSL.c \ - xf86drmMode.c \ - libdrm_lists.h + xf86drmMode.c libdrmincludedir = ${includedir} libdrminclude_HEADERS = xf86drm.h xf86drmMode.h -noins...
2012 Jul 05
3
[PATCH] Xen/MCE: stick all 1's to MCi_CTL of vMCE
...- memset(h_mci_ctrl, ~0, - min(firstbank, nr_mce_banks) * sizeof(*h_mci_ctrl)); - for (i = firstbank; i < nr_mce_banks; i++) - rdmsrl(MSR_IA32_MCx_CTL(i), h_mci_ctrl[i]); - } rdmsrl(MSR_IA32_MCG_CAP, value); /* For Guest vMCE usage */ @@ -551,18 +525,13 @@ static int mca_ctl_conflict(struct mcinfo_bank *bank, struct domain *d) { - int bank_nr; - - if ( !bank || !d || !h_mci_ctrl ) + if ( !bank || !d ) return 1; /* Will MCE happen in host if If host mcg_ctl is 0? */ if ( ~d->arch.vmca_msrs->mcg_ctl &a...
2009 Aug 27
1
[patch] ssh-copy-id: improve error reporting with -i and documentation
...ex: contrib/ssh-copy-id =================================================================== RCS file: /cvs/openssh/contrib/ssh-copy-id,v retrieving revision 1.7 diff -u -p -r1.7 ssh-copy-id --- contrib/ssh-copy-id 21 Jan 2009 09:29:21 -0000 1.7 +++ contrib/ssh-copy-id 27 Aug 2009 15:57:49 -0000 @@ -18,6 +18,10 @@ if [ "-i" = "$1" ]; then fi shift # and this should leave $1 as the target name fi + if [ ! -e "$ID_FILE" ]; then + echo "$0: ERROR: $ID_FILE does not exist" >&2 + exit 1 + fi else if [ x$SSH_AUTH_SOCK != x...
2014 Sep 09
3
[PATCH] ppc64: ELFv2: Load TOC value in system call stub
...ibm.com> --- usr/klibc/arch/ppc64/sysstub.ph | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/usr/klibc/arch/ppc64/sysstub.ph b/usr/klibc/arch/ppc64/sysstub.ph index b3f6e38..a0c6d41 100644 --- a/usr/klibc/arch/ppc64/sysstub.ph +++ b/usr/klibc/arch/ppc64/sysstub.ph @@ -18,6 +18,9 @@ sub make_sysstub($$$$$@) { #if _CALL_ELF == 2 .type ${fname},\@function ${fname}: +0: addis 2,12,(.TOC.-0b)\@ha + addi 2,2,(.TOC.-0b)\@l + .localentry ${fname},.-${fname} #else .section ".opd","aw" .balign 8 -- 1.7.1
2020 May 27
2
[PATCH] nouveau: add fbdev dependency
...1 + drivers/gpu/drm/nouveau/nouveau_drm.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/Kconfig b/drivers/gpu/drm/nouveau/Kconfig index 980ed09bd7f6..8c640f003358 100644 --- a/drivers/gpu/drm/nouveau/Kconfig +++ b/drivers/gpu/drm/nouveau/Kconfig @@ -18,6 +18,7 @@ config DRM_NOUVEAU select THERMAL if ACPI && X86 select ACPI_VIDEO if ACPI && X86 select SND_HDA_COMPONENT if SND_HDA_CORE + depends on FBDEV || !FBDEV help Choose this option for open-source NVIDIA support. diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c...
2013 May 24
10
[PATCH 0/4] ARM/early-printk: Improve reusability and add Calxeda support
The current early-printk support for ARM is rather hard-coded, making it hard to add machines or tweak settings. This series slightly moves some code to gather UART settings in xen/arch/arm/Rules.mk instead of the actual .c files. Also it allows two different machines with different settings to share the same driver, which the last patch exploits to add support the Calxeda Midway hardware. This
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
...his removes the need for a pre_intr_init_hook. The fpu_irq change is a nop - it just looks nicer. Signed-off-by: Zachary Amsden <zach@vmware.com> =================================================================== --- a/arch/i386/kernel/i8259.c +++ b/arch/i386/kernel/i8259.c @@ -347,7 +347,18 @@ static irqreturn_t math_error_irq(int cp * New motherboards sometimes make IRQ 13 be a PCI interrupt, * so allow interrupt sharing. */ -static struct irqaction fpu_irq = { math_error_irq, 0, CPU_MASK_NONE, "fpu", NULL, NULL }; +static struct irqaction fpu_irq = { + .handler = mat...
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
...his removes the need for a pre_intr_init_hook. The fpu_irq change is a nop - it just looks nicer. Signed-off-by: Zachary Amsden <zach@vmware.com> =================================================================== --- a/arch/i386/kernel/i8259.c +++ b/arch/i386/kernel/i8259.c @@ -347,7 +347,18 @@ static irqreturn_t math_error_irq(int cp * New motherboards sometimes make IRQ 13 be a PCI interrupt, * so allow interrupt sharing. */ -static struct irqaction fpu_irq = { math_error_irq, 0, CPU_MASK_NONE, "fpu", NULL, NULL }; +static struct irqaction fpu_irq = { + .handler = mat...
2008 Apr 22
3
[PATCH 0/3] ia64/pv_ops preparation
Hi. This patchset is preparation patches for ia64/pv_ops support. They are almost trivial and mainly make kernel paravirtualization friendly. thanks, Diffstat: arch/ia64/kernel/irq_ia64.c | 1 - include/asm-ia64/intrinsics.h | 11 +++++++++++ include/asm-ia64/mmu_context.h | 6 +----- include/asm-ia64/smp.h | 2 ++ include/asm-ia64/system.h | 10 ++++++++-- 5 files