search for: 12,6

Displaying 20 results from an estimated 470 matches for "12,6".

Did you mean: 1,6
2012 May 05
3
[PATCH] fix non-RT sigsuspend()
...I could, for the hell of it, not figure out what the calling convention on this architecture was. But it?s not in klibc. (8) I could not figure out the calling convention either, but the architecture headers seem to work with RT, so switched to RT. Furthermore, its sigset_t seems to be 128 bit wide. Signed-off-by: Thorsten Glaser <tg at mirbsd.org> --- usr/include/arch/alpha/klibc/archconfig.h | 2 ++ usr/include/arch/arm/klibc/archconfig.h | 2 ++ usr/include/arch/cris/klibc/archconfig.h | 2 ++ usr/include/arch/i386/klibc/archconfig.h | 2 ++ usr/in...
2009 Oct 30
2
Names of list members in a plot using sapply
Hi R users: I got this code to generate a graphic for each member of a lists. list1<-list(A=data.frame(x=c(1,2),y=c(5,6)),B=data.frame(x=c(8,9),y=c(12,6))) names1<-names(list1) sapply(1:length(list1),function(i) with(list1[[i]],plot(x,y,type="l",main=paste("Graphic of",names1[i])))) Is there a more elegant solution for not to use two separate lists? I would like to just use sapply(list1, somePlotfunction) and plot for e...
2010 Mar 10
2
[PATCH] Set KEYTAB_FILE=/etc/libvirt/krb5.tab in node-config
Yesterday on irc : 18:12 < arthurc> "Mar 09 17:08:01 Retrieving keytab:" :) and my host appears in ovirt (still unavailable but it's better). I defined in ovirt-awake : KEYTAB_FILE=/etc/libvirt/krb5.tab 19:04 < mcpierce> arthurc: kk - the value ought to be moved to /etc/sysconfig/node-config. I...
2014 Jul 10
2
[LLVMdev] [lld] LLD's software architecture (update)
Well, it does have a Registry& that's defined in Reader.h. But that can be forward declared (and apparently is in some of the other headers it includes. On Thu, Jul 10, 2014 at 12:08 PM, Andreas Wendleder < andreas.wendleder at googlemail.com> wrote: > Hi > > - passes depend on Reader and Writer >> > > That's an easy one. Compile tested on Windows with Cmake. > > Regards, > Andreas > > From 36855377f20b0492735339f36ed7c650a4c906...
2019 Jan 03
4
[PATCH 0/2] virtio: virtio_config_ops documentation
After the latest virtio-balloon changes, it became clear that it is not obvious that some of the virtio operations (e.g. reading or writing the config space) cannot be done from an atomic context for all transports. At least try to document that, and also fix some inconsistencies I noticed along the way. Cornelia Huck (2): virtio: fix virtio_config_ops description virtio: document
2019 Jan 03
4
[PATCH 0/2] virtio: virtio_config_ops documentation
After the latest virtio-balloon changes, it became clear that it is not obvious that some of the virtio operations (e.g. reading or writing the config space) cannot be done from an atomic context for all transports. At least try to document that, and also fix some inconsistencies I noticed along the way. Cornelia Huck (2): virtio: fix virtio_config_ops description virtio: document
2019 Jan 03
1
[PATCH 2/2] virtio: document virtio_config_ops restrictions
...include/linux/virtio_config.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/include/linux/virtio_config.h b/include/linux/virtio_config.h > index 7087ef946ba7..987b6491b946 100644 > --- a/include/linux/virtio_config.h > +++ b/include/linux/virtio_config.h > @@ -12,6 +12,11 @@ struct irq_affinity; > > /** > * virtio_config_ops - operations for configuring a virtio device > + * Note: Do not assume that a transport implements all of the operations > + * getting/setting a value as a simple read/write! Generally speaking, > + *...
2003 Aug 08
1
understanding time series objects
...a(UKLungDeaths) # If I do apply(mdeaths,1,cumsum) # Gives an error as mdeaths is not a matrix but a vector, although when I look at it : mdeaths # the ts object has a matrix like "appearance" # The only way of doing it I've found is: mdeaths2<-as.matrix(mdeaths) dim(mdeaths2)<-c(12,6) mdeaths2<-apply(mdeaths2,2,cumsum) mdeaths[]<-mdeaths2 # It is not very efficient to solve the problem of applying a cummulative sum to each year ### Second, for a multivariate ts: data(UKLungDeaths) Multits<-ts.union(mdeaths, fdeaths) # Why does Multits$mdeaths # not work and I have t...
2005 May 22
0
[patch 03/12] make getopt visible
...nistd.h. Signed-off-by: Erik van Konijnenburg <ekonin@xs4all.nl> Index: exec/ipconfig/main.c =================================================================== --- exec.orig/ipconfig/main.c 2005-05-18 11:53:11.000000000 +0200 +++ exec/ipconfig/main.c 2005-05-21 13:09:54.000000000 +0200 @@ -12,6 +12,7 @@ #include <sys/types.h> #include <dirent.h> #include <fcntl.h> +#include <unistd.h> /* for getopts */ #include <linux/if_arp.h> Index: exec/nfsmount/main.c =================================================================== --- exec.orig/nfsmount/main...
2014 Nov 27
3
[PATCH net-next] vhost: remove unnecessary forward declarations in vhost.h
Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/vhost/vhost.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 3eda654..7d039ef 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -12,8 +12,6 @@ #include <linux/virtio_ring.h> #include <linux/atomic.h> -struct vhost_device; - struct vhost_work; typedef void (*vhost_work_fn_t)(struct vhost_work *work); @@ -54,8 +52,6 @@ struct vhost_log { u64 len; }; -struct vhost_virtqueue; - /* The virtqueue structure d...
2014 Nov 27
3
[PATCH net-next] vhost: remove unnecessary forward declarations in vhost.h
Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/vhost/vhost.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 3eda654..7d039ef 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -12,8 +12,6 @@ #include <linux/virtio_ring.h> #include <linux/atomic.h> -struct vhost_device; - struct vhost_work; typedef void (*vhost_work_fn_t)(struct vhost_work *work); @@ -54,8 +52,6 @@ struct vhost_log { u64 len; }; -struct vhost_virtqueue; - /* The virtqueue structure d...
2013 Aug 28
3
[PATCH 6/6] drm/nouveau: use MSI interrupts
...nsertions(+) > > diff --git a/drivers/gpu/drm/nouveau/core/include/subdev/mc.h b/drivers/gpu/drm/nouveau/core/include/subdev/mc.h > index 9d2cd20..ce6569f 100644 > --- a/drivers/gpu/drm/nouveau/core/include/subdev/mc.h > +++ b/drivers/gpu/drm/nouveau/core/include/subdev/mc.h > @@ -12,6 +12,7 @@ struct nouveau_mc_intr { > struct nouveau_mc { > struct nouveau_subdev base; > const struct nouveau_mc_intr *intr_map; > + bool use_msi; > }; > > static inline struct nouveau_mc * > diff --git a/drivers/gpu/drm/nouveau/core/subdev/mc/base....
2002 Mar 13
2
[PATCH] fix install-strip target in Makefile
The first patch will make "make install-strip" work. The second spends a few cycles avoiding "1 files to consider." Both are trivial but IMHO useful. --- Makefile.orig Wed Mar 13 06:38:42 2002 +++ Makefile Wed Mar 13 06:40:58 2002 @@ -12,6 +12,7 @@ LDFLAGS= INSTALLCMD=/bin/install -c +INSTALLMAN=/bin/install -c srcdir=. @@ -56,8 +57,8 @@ ${INSTALLCMD} -m 755 rsync ${bindir} -mkdir -p ${mandir}/man1 -mkdir -p ${mandir}/man5 - ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLCMD} -m 644 $(srcdir)/rsyncd...
2020 Aug 17
2
qemu -display sdl,gl=on also eats CPU
...75,3 total, 3535,7 free, 3339,3 used, 5000,3 buff/cache MiB Swap: 1145,0 total, 1131,2 free, 13,8 used. 4874,7 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 6215 guest 20 0 1455160 951768 45560 R 99,3 7,8 710:44.44 qemu-system-x86 12655 guest 20 0 2459848 1,5g 126708 R 59,1 12,6 217:53.21 seamonkey 1991 root 20 0 178112 109500 28840 S 20,9 0,9 187:20.05 Xorg 2068 guest 20 0 104932 51660 30764 S 5,6 0,4 54:08.99 ktorrent 6031 root 20 0 0 0 0 I 2,0 0,0 0:20.24 kw...
2009 Jul 28
0
[PATCH 3/5] Storage views patched for glusterfs drop down as one the Storage Pools
...orage_volume/show.rhtml | 8 ++++++++ 6 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/app/views/storage/_form.rhtml b/src/app/views/storage/_form.rhtml index ea2b0c4..1e7f22f 100644 --- a/src/app/views/storage/_form.rhtml +++ b/src/app/views/storage/_form.rhtml @@ -12,6 +12,8 @@ <%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "NfsStoragePool" %> +<%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[...
2009 Jul 09
0
[PATCH 3/5 ovirt-server] Storage views patched for glusterfs drop down as one the Storage Pools
...orage_volume/show.rhtml | 8 ++++++++ 6 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/app/views/storage/_form.rhtml b/src/app/views/storage/_form.rhtml index ea2b0c4..1e7f22f 100644 --- a/src/app/views/storage/_form.rhtml +++ b/src/app/views/storage/_form.rhtml @@ -12,6 +12,8 @@ <%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "NfsStoragePool" %> +<%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[...
2014 Jul 10
2
[LLVMdev] [lld] LLD's software architecture (update)
...10, Bas van den Berg <b.van.den.berg.nl at gmail.com> > a écrit : > > Well, it does have a Registry& that's defined in Reader.h. > But that can be forward declared (and apparently is in some > of the other headers it includes. > > > > On Thu, Jul 10, 2014 at 12:08 PM, Andreas Wendleder < > andreas.wendleder at googlemail.com> wrote: > >> Hi >> >> - passes depend on Reader and Writer >>> >> >> That's an easy one. Compile tested on Windows with Cmake. >> >> Regards, >> Andreas >&gt...
2014 Jul 10
2
[LLVMdev] [lld] LLD's software architecture (update)
...0.png On Tue, Jun 3, 2014 at 3:07 AM, Rui Ueyama <ruiu at google.com> wrote: > I will create a patch to move the files and send it for review. > > > On Mon, Jun 2, 2014 at 1:05 PM, Michael Spencer <bigcheesegs at gmail.com> > wrote: > >> On Mon, Jun 2, 2014 at 12:49 AM, Rui Ueyama <ruiu at google.com> wrote: >> > I agree to move these files to Core. Any objections? >> >> None here. >> >> - Michael Spencer >> >> > >> > On Mon, Jun 2, 2014 at 12:44 AM, Bas van den Berg >> > <b.van.den....
2003 Nov 29
1
[PATCH] ash not make -j safe, make spotless updates
...odes.o options.o parser.o redir.o show.o trap.o var.o make spotless doesnt work reliable, the patch adds a few more targets. Is there a good reason to build ash.shared in klibc? diff -p -purNx linux klibc-0.87.orig/ash/Makefile klibc-0.87/ash/Makefile --- klibc-0.87.orig/ash/Makefile 2003-02-10 12:05:21.000000000 +0100 +++ klibc-0.87/ash/Makefile 2003-11-29 13:16:57.000000000 +0100 @@ -12,6 +12,9 @@ OBJ2 = builtins.o cd.o dirent.o bltin/ec OBJS = $(OBJ1) $(OBJ2) +OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o + + SRCROOT =...
2009 Sep 11
2
[PATCH] Add echo_daemon command
...--- daemon/Makefile.am | 1 + daemon/echo_daemon.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++ daemon/m4/stddef_h.m4 | 45 +++++++++++++++++++++++++++++++++ po/POTFILES.in | 1 + src/MAX_PROC_NR | 2 +- src/generator.ml | 7 +++++ 6 files changed, 121 insertions(+), 1 deletions(-) create mode 100644 daemon/echo_daemon.c create mode 100644 daemon/m4/stddef_h.m4 diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 83ee408..ae74699 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -36,6 +36,7 @@ guestfsd_SOURCES = \ dmesg.c \...