Displaying 20 results from an estimated 81 matches for "15,9".
Did you mean:
1,9
2019 Oct 31
3
[PATCH 1/2] loop: fix loop_info struct
...dconrad at ubuntu.com>
Signed-off-by: Dimitri John Ledkov <xnox at ubuntu.com>
---
usr/utils/loop.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/usr/utils/loop.h b/usr/utils/loop.h
index 9abc2874..667f7dc0 100644
--- a/usr/utils/loop.h
+++ b/usr/utils/loop.h
@@ -15,9 +15,9 @@
struct loop_info {
int lo_number;
- dev_t lo_device;
+ __kernel_old_dev_t lo_device;
unsigned long lo_inode;
- dev_t lo_rdevice;
+ __kernel_old_dev_t lo_rdevice;
int lo_offset;
int lo_encrypt_type;
int lo_encrypt_key_size;
--
2.20.1
2019 Nov 01
0
[PATCH 1/2 v2] loop: fix loop_info struct
...at ubuntu.com>
---
Updated patch description, based on feedback on the mailing list.
usr/utils/loop.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/usr/utils/loop.h b/usr/utils/loop.h
index 9abc2874..667f7dc0 100644
--- a/usr/utils/loop.h
+++ b/usr/utils/loop.h
@@ -15,9 +15,9 @@
struct loop_info {
int lo_number;
- dev_t lo_device;
+ __kernel_old_dev_t lo_device;
unsigned long lo_inode;
- dev_t lo_rdevice;
+ __kernel_old_dev_t lo_rdevice;
int lo_offset;
int lo_encrypt_type;
int lo_encrypt_key_size;
--
2.20.1
2004 Jan 27
4
Re: udevinfo output broken
...ite gets 0x1 as f, calls fileno() which decrements it and passes it
> > to write().
>
> No idea if this is correct:
>
> --- klibc-0.98/klibc/include/stdio.h 2004-01-22 21:56:49.000000000 +0100
> +++ klibc/klibc/include/stdio.h 2004-01-27 22:50:27.000000000 +0100
> @@ -15,9 +15,9 @@
> struct _IO_file;
> typedef struct _IO_file FILE;
>
> -#define stdin ((FILE *)0)
> -#define stdout ((FILE *)1)
> -#define stderr ((FILE *)2)
> +#define stdin ((FILE *)1)
> +#define stdout ((FILE *)2)
> +#define stderr ((FILE *)3)
>
> #ifndef EOF...
2008 Apr 30
1
error with lme within a loop
...ar errors
Error en lme.formula(yboot ~ X[, -1], data = data.fr, random = Z.block) :
nlminb problem, convergence error code = 1
message = false convergence (8)
My data can be reproduced as follows
library(splines)
library(nlme)
x<-c(rep(1993:2007,9))
barrio<-factor(c(rep(1:9,rep(15,9))))
xl<-min(x)-0.00001
xr<-max(x)+0.00001
ndx<-4
bdeg<-3
pord<-2
dx <- (xr-xl)/ndx
knots <- seq(xl-bdeg*dx, xr+bdeg*dx, by=dx)
B<-spline.des(knots,x,bdeg+1,0*x)$design
m=ncol(B)
D=diff(diag(m),differences=pord)
P=t(D)%*%D
P.svd=svd(t(D)%*%D)
U=(P.svd$u)[,1:(m-pord)]
d=(...
2017 Dec 30
0
[PATCH] Fix sparc assembly when compiled as PIC
...s default to PIE for their compilers, which on sparc is passed
on to the assembler. Since the behaviour of %hi/%lo changes under PIC to become
GOT offsets, the current assembly files need adapting to not try to use a GOT
offset as an absolute address.
---
usr/include/arch/sparc/machine/asm.h | 15 +++++++++++++--
usr/include/arch/sparc64/machine/asm.h | 1 +
usr/include/arch/sparc64/machine/frame.h | 1 +
usr/klibc/arch/sparc/pipe.S | 6 +++---
usr/klibc/arch/sparc/syscall.S | 6 ++++--
usr/klibc/arch/sparc/sysfork.S | 6 ++++--
usr/klibc/arch/sparc64...
2011 Jan 29
1
[PATCH] Re: klibc barfs on m68k syscall interface
...s a
very thin line anyway? with some, you don?t know which side they?re on
-------------- next part --------------
diff -Nru klibc-1.5.21/debian/changelog klibc-1.5.21/debian/changelog
--- klibc-1.5.21/debian/changelog 2011-01-29 12:48:07.000000000 +0100
+++ klibc-1.5.21/debian/changelog 2011-01-29 15:48:04.000000000 +0100
@@ -1,3 +1,10 @@
+klibc (1.5.21-1+tg.2) unstable; urgency=low
+
+ * debian/patches/fix-m68k-syscalls: rewrite m68k syscall ABI
+ to fix it (Closes: #334917) and support 6-argument syscalls.
+
+ -- Thorsten Glaser <tg at mirbsd.de> Sat, 29 Jan 2011 15:48:02 +0100
+...
2017 May 04
0
[PATCH v1] ACPI: Switch to use generic UUID API
On Thu, 04 May 2017, Andy Shevchenko <andriy.shevchenko at linux.intel.com> wrote:
> diff --git a/drivers/gpu/drm/i915/intel_acpi.c b/drivers/gpu/drm/i915/intel_acpi.c
> index eb638a1e69d2..72bfe6ceadf8 100644
> --- a/drivers/gpu/drm/i915/intel_acpi.c
> +++ b/drivers/gpu/drm/i915/intel_acpi.c
> @@ -15,13 +15,9 @@ static struct intel_dsm_priv {
> acpi_handle dhandle;
> } intel_dsm_priv;
>
&...
2016 Jan 28
0
[PATCH v5 1/5] x86: add cc clobber for addl
...redhat.com>
---
arch/x86/include/asm/barrier.h | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/arch/x86/include/asm/barrier.h b/arch/x86/include/asm/barrier.h
index a584e1c..a65bdb1 100644
--- a/arch/x86/include/asm/barrier.h
+++ b/arch/x86/include/asm/barrier.h
@@ -15,9 +15,12 @@
* Some non-Intel clones support out of order store. wmb() ceases to be a
* nop for these.
*/
-#define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
-#define rmb() alternative("lock; addl $0,0(%%esp)", "lfence", X86_F...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 11/17] paravirt_ops - asm-offset updates
...edhat.com
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Index: work-nopv/arch/x86_64/kernel/asm-offsets.c
===================================================================
--- work-nopv.orig/arch/x86_64/kernel/asm-offsets.c
+++ work-nopv/arch/x86_64/kernel/asm-offsets.c
@@ -15,6 +15,9 @@
#include <asm/segment.h>
#include <asm/thread_info.h>
#include <asm/ia32.h>
+#ifdef CONFIG_PARAVIRT
+#include <asm/paravirt.h>
+#endif
#define DEFINE(sym, val) \
asm volatile("\n->" #sym " %0 " #val : : "i" (val))
@@...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 11/17] paravirt_ops - asm-offset updates
...edhat.com
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Index: work-nopv/arch/x86_64/kernel/asm-offsets.c
===================================================================
--- work-nopv.orig/arch/x86_64/kernel/asm-offsets.c
+++ work-nopv/arch/x86_64/kernel/asm-offsets.c
@@ -15,6 +15,9 @@
#include <asm/segment.h>
#include <asm/thread_info.h>
#include <asm/ia32.h>
+#ifdef CONFIG_PARAVIRT
+#include <asm/paravirt.h>
+#endif
#define DEFINE(sym, val) \
asm volatile("\n->" #sym " %0 " #val : : "i" (val))
@@...
2003 Apr 28
0
[PATCH] Get klibc building under post-2.5.68 kernels
...f the form:
typedef __u8 u8;
However, this is prone to creeping breakage as the kernel leaks more
data types into klibc's view.
<b
-------------- next part --------------
--- a/klibc/include/sys/types.h Mon Apr 28 14:44:20 2003
+++ b/klibc/include/sys/types.h Mon Apr 28 14:44:20 2003
@@ -15,7 +15,9 @@
typedef ptrdiff_t ssize_t;
#include <linux/posix_types.h>
+#define __KERNEL__
#include <asm/types.h>
+#undef __KERNEL__
/* Keeps linux/types.h from getting included elsewhere */
#define _LINUX_TYPES_H
2011 Jan 29
0
[PATCH] Fix m68k syscall API and support 6-argument syscalls.
...y return value to %a0 for syscalls returning pointers */
+ move.l %d0, %a0
rts
.size __syscall_common,.-__syscall_common
diff --git a/usr/klibc/arch/m68k/vfork.S b/usr/klibc/arch/m68k/vfork.S
index a3a7e44..ec8baeb 100644
--- a/usr/klibc/arch/m68k/vfork.S
+++ b/usr/klibc/arch/m68k/vfork.S
@@ -15,14 +15,9 @@ vfork:
move.l (%sp)+, %d1 /* Return address */
move.l # __NR_vfork, %d0
trap #0
- move.l %d1, -(%sp)
- cmpi.l #-4095, %d0
- blt.l 1f
- neg.l %d0
- move.l %d0, (errno)
- moveq #-1, %d0
-1:
- movea.l %d0, %a0
- rts
+ move.l %d1, -(%sp) /* restore stack */
+
+ /* common code from s...
2023 May 26
1
[PATCH] virtio_ring: validate used buffer length
...by default
- don't do validation for legacy device
- rebase and support virtqueue resize
---
drivers/virtio/virtio_ring.c | 75 ++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
index 143f380baa1c..5b151605aaf8 100644
--- a/drivers/virtio/virtio_ring.c
+++ b/drivers/virtio/virtio_ring.c
@@ -15,6 +15,9 @@
#include <linux/spinlock.h>
#include <xen/xen.h>
+static bool force_used_validation = false;
+module_param(force_used_validation, bool, 0444);
+
#ifdef DEBUG
/* For development,...
2007 Apr 18
2
[PATCH 3/3] Gdt page isolation
...ware.com>
Index: linux-2.6.14-rc1/include/asm-i386/desc.h
===================================================================
--- linux-2.6.14-rc1.orig/include/asm-i386/desc.h 2005-09-20 20:19:57.000000000 -0700
+++ linux-2.6.14-rc1/include/asm-i386/desc.h 2005-09-20 20:20:50.000000000 -0700
@@ -15,9 +15,6 @@
#include <asm/mmu.h>
extern struct desc_struct cpu_gdt_table[GDT_ENTRIES];
-DECLARE_PER_CPU(struct desc_struct, cpu_gdt_table[GDT_ENTRIES]);
-
-#define get_cpu_gdt_table(_cpu) (per_cpu(cpu_gdt_table,_cpu))
DECLARE_PER_CPU(unsigned char, cpu_16bit_stack[CPU_16BIT_STACK_SIZE])...
2007 Apr 18
2
[PATCH 3/3] Gdt page isolation
...ware.com>
Index: linux-2.6.14-rc1/include/asm-i386/desc.h
===================================================================
--- linux-2.6.14-rc1.orig/include/asm-i386/desc.h 2005-09-20 20:19:57.000000000 -0700
+++ linux-2.6.14-rc1/include/asm-i386/desc.h 2005-09-20 20:20:50.000000000 -0700
@@ -15,9 +15,6 @@
#include <asm/mmu.h>
extern struct desc_struct cpu_gdt_table[GDT_ENTRIES];
-DECLARE_PER_CPU(struct desc_struct, cpu_gdt_table[GDT_ENTRIES]);
-
-#define get_cpu_gdt_table(_cpu) (per_cpu(cpu_gdt_table,_cpu))
DECLARE_PER_CPU(unsigned char, cpu_16bit_stack[CPU_16BIT_STACK_SIZE])...
2013 Oct 15
29
[PATCH 0/4] Reintroduce OVMF support
This small series reintroduces OVMF support in Xen
You can fetch working OVMF tree on:
git://xenbits.xen.org/people/liuw/ovmf.git master
Working changeset that can be sticked in Config.mk is:
8833370303d3bf3153760ee42760ef1b9b5c562
Note that VNC doesn''t work properly when using OVMF, but that''s not OVMF''s
problem. This issue should be addressed in Xen and I''m working on that.
Wei.
Ian Campbell (3):
tools: clone ovmf to ovmf-dir directory
tools: support system su...
2015 Jan 14
0
[PATCH v3 09/16] pci: add pci_iomap_range
...c | 35 ++++++++++++++++++++++++++++++-----
2 files changed, 40 insertions(+), 5 deletions(-)
diff --git a/include/asm-generic/pci_iomap.h b/include/asm-generic/pci_iomap.h
index ce37349..7389c87 100644
--- a/include/asm-generic/pci_iomap.h
+++ b/include/asm-generic/pci_iomap.h
@@ -15,6 +15,9 @@ struct pci_dev;
#ifdef CONFIG_PCI
/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
+extern void __iomem *pci_iomap_range(struct pci_dev *dev, int bar,
+ unsigned long offset,
+...
2015 Jan 14
0
[PATCH v3 09/16] pci: add pci_iomap_range
...c | 35 ++++++++++++++++++++++++++++++-----
2 files changed, 40 insertions(+), 5 deletions(-)
diff --git a/include/asm-generic/pci_iomap.h b/include/asm-generic/pci_iomap.h
index ce37349..7389c87 100644
--- a/include/asm-generic/pci_iomap.h
+++ b/include/asm-generic/pci_iomap.h
@@ -15,6 +15,9 @@ struct pci_dev;
#ifdef CONFIG_PCI
/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
+extern void __iomem *pci_iomap_range(struct pci_dev *dev, int bar,
+ unsigned long offset,
+...
2006 Oct 19
0
[688] trunk/wxruby2/swig/fixplatform.rb: Remove a spurious warning on Windows (Roy Sutton)
...vin Smith
</ins><span class="cx"> # released under the MIT-style wxruby2 license
</span><span class="cx">
</span><span class="cx"> # This script post-processes the SWIG output
</span><span class="lines">@@ -15,6 +15,9 @@
</span><span class="cx"> this_module = File.basename(ARGV[0],".cpp")
</span><span class="cx">
</span><span class="cx"> File.open(ARGV[0], "w") do | out |
</span><ins>+ if RUBY_PLATFORM =...
2010 Jul 16
0
Mixed Conditional Logit with nested data
...0
1,9,B,0,0,0,1,0,1,0,0,1,0
1,10,A,1,1,0,0,1,0,0,0,1,0
1,10,B,0,0,0,1,0,0,1,1,0,0
1,11,A,1,0,1,0,0,1,0,1,0,0
1,11,B,0,0,0,1,1,0,0,0,0,1
1,12,A,1,1,0,0,0,1,0,1,0,0
1,12,B,0,0,1,0,0,0,1,0,1,0
1,13,A,0,0,0,1,0,0,1,0,1,0
1,13,B,1,1,0,0,0,1,0,0,0,1
1,14,A,0,0,0,1,0,0,1,0,0,1
1,14,B,1,0,1,0,1,0,0,1,0,0
1,15,A,1,1,0,0,1,0,0,0,1,0
1,15,B,0,0,0,1,0,1,0,0,0,1
1,16,A,1,1,0,0,0,0,1,1,0,0
1,16,B,0,0,1,0,0,1,0,0,1,0
1,17,A,1,0,1,0,1,0,0,0,1,0
1,17,B,0,0,0,1,0,0,1,1,0,0
1,18,A,1,1,0,0,1,0,0,1,0,0
1,18,B,0,0,0,1,0,0,1,0,0,1
1,19,A,1,1,0,0,1,0,0,0,0,1
1,19,B,0,0,0,1,0,1,0,0,1,0
1,20,A,0,0,0,1,0,0,1,0,0,1
1,20,B,...