search for: prp

Displaying 19 results from an estimated 19 matches for "prp".

Did you mean: pop
2020 Aug 19
0
[PATCH 28/28] nvme-pci: use dma_alloc_pages backed dmapools
...--git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index a33adab62acbaf..fb34dbcb973673 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -114,8 +114,8 @@ struct nvme_dev { struct blk_mq_tag_set admin_tagset; u32 __iomem *dbs; struct device *dev; - struct dma_pool *prp_page_pool; - struct dma_pool *prp_small_pool; + struct dma_pool prp_page_pool; + struct dma_pool prp_small_pool; unsigned online_queues; unsigned max_qid; unsigned io_queues[HCTX_MAX_TYPES]; @@ -536,7 +536,7 @@ static void nvme_unmap_data(struct nvme_dev *dev, struct request *req) if (i...
2012 Dec 23
1
Esttab error while exporting regression results
Dear listers, I am trying to export a regression output to a latex document using the R package eststo. I have two variables: an ordered factor: group <- gl(3,5,20, labels=c("Ctl","Trt","prp")) and a continuous variable: weight <- runif(20) I want to regress weight over group, therefore I run: reg1 <- lm(weight ~ group) I wish to include the output of my regression in a latex document. I am using Knitr. Hence I type: eststo(reg1) and esttab() but I get the following e...
2017 Jun 28
4
Extraneous full stop in csv read
...5,2,2265,2.265 1895,3,2340,2.34 1895,4,1014,1.014 1895,5,1281,1.281 1895,6,58,0.058 1895,7,156,0.156 1895,8,140,0.14 1895,9,1087,1.087 1895,10,322,0.322 1895,11,1331,1.331 1895,12,2428,2.428 1896,1,7156,7.156 1896,2,712,0.712 1896,3,2982,2.982 File read in as follows: x <- read.csv('DRI-mo-prp.csv', header = T) Structure: str(x) 'data.frame': 1469 obs. of 4 variables: $ yr : int 1895 1895 1895 1895 1895 1895 1895 1895 1895 1895 ... $ mo : int 1 2 3 4 5 6 7 8 9 10 ... $ Data: int 8243 2265 2340 1014 1281 58 156 140 1087 322 ... $ in. : num 8.24 2.27 2.34 1.01 1...
2011 Aug 25
2
rpart: plot without scientific notation
While I'm very pleased with the results I get with rpart and rpart.plot, I would like to change the scientific notation of the dependent variable in the plots into integers. Right now all my 5 or more digit numbers are displayed using scientific notation. I managed to find this: http://tolstoy.newcastle.edu.au/R/e8/help/09/12/8423.html but I do not fully understand what to change, and to
2009 Jan 28
2
7.1 new install halts on BTX error
...d the kernel. The FreeBSD 7.1 install CD also boots and allows me to install over FTP. I have run into BTX problems on this machine before under -CURRENT (see http://lists.freebsd.org/pipermail/freebsd-current/2008-October/089460.html ). Dmesg from 7.0 in http://www.freebsd.org/cgi/query-pr.cgi?prp=125769-1-txt&n=/patch.txt A new install of 7.1-RELEASE on separate disks leads to this backtrace: int=0000000d err=00001840 efl=00010207 eip=00000511 eax=04551364 ebx=00000000 ecx=00495cae edx=00495cae esi=00000009 edi=00000001 ebp=00000000 esp=00495cae cs=002b ds=0033 es=0033 fs...
2007 Nov 23
0
Mutual information
Dear R helpers, I have a data frame > summary(emPat) pairE subj pattern far-near : 18 sub1 : 37 urb :123 long-short : 18 sub2 : 37 bpb : 72 supported-unsupported: 18 sub3 : 37 prp : 67 large-small : 18 sub4 : 37 brb : 64 dense-sparse : 18 sub5 : 37 unp : 62 divergent-convergent : 18 sub6 : 37 pnp : 44 (Other) :558 (Other):444 (Other):234 > dim(emPat) [1] 666 3 I have 37 types of pairE. 18 subject...
2011 Sep 14
1
substitute games with randomForest::partialPlot
I'm having trouble calling randomForest::partialPlot programmatically. It tries to use name of the (R) variable as the data column name. Example: library(randomForest) iris.rf <- randomForest(Species ~ ., data=iris, importance=TRUE, proximity=TRUE) partialPlot(iris.rf, iris, Sepal.Width) # works partialPlot(iris.rf, iris, "Sepal.Width") # works (function(var.name)
2005 Jan 07
1
Connection closed by remote host
...et by peer Connection to localhost closed. It used to work great, but when my copied my drive to another drive so I could swap to a larger drive, I started having problems. I copied the partitions one by one after booting with a LiveCD. It could be a permission problem, but I copied using `# cp -pRP`. I posted moreinformation on the problem at http://forums.gentoo.org/viewtopic.php?t=275380 I would appreciate any help. Many thanks, Matin
2012 Dec 22
0
texreg error while exporting regression table
Dear listers, I am trying to export my regression table to my latex document. Let's say I have two variables: an ordered factor: group <- gl(3,5,20, labels=c("Ctl","Trt","prp")) and a continuous variable: weight <- runif(20) I want to regress group over weigth, therefore I run: reg2 <- polr(group ~ weight, Hess = TRUE, method = "logistic", model = TRUE) Finally, I wish to include a table with the results in my latex document. Hence I run: tt &lt...
2015 Sep 18
0
[RFC PATCH 0/2] virtio nvme
...ore_nvme backend driver is not processing nvme commands per-say, but simply exposing nvme hardware queue resources to a frontend fabric driver. For the nvme-over-fabrics case, backend nvme submission/complete queues are mapped to RDMA hardware queues. So essentially the nvme physical region page (PRP) is mapped to ib_sgl->addr. For a 'tcm_eventfd_nvme' style host-paravirt fabric case, it's less clear how exposing native nvme backend hardware resources would work, or if there is a significant performance benefit over just using submit_bio() for Read/Write/Flush. --nab
2015 Sep 18
3
[RFC PATCH 0/2] virtio nvme
On Thu, 2015-09-17 at 17:55 -0700, Nicholas A. Bellinger wrote: > On Thu, 2015-09-17 at 16:31 -0700, Ming Lin wrote: > > On Wed, 2015-09-16 at 23:10 -0700, Nicholas A. Bellinger wrote: > > > Hi Ming & Co, > > > > > > On Thu, 2015-09-10 at 10:28 -0700, Ming Lin wrote: > > > > On Thu, 2015-09-10 at 15:38 +0100, Stefan Hajnoczi wrote: > >
2015 Sep 18
3
[RFC PATCH 0/2] virtio nvme
On Thu, 2015-09-17 at 17:55 -0700, Nicholas A. Bellinger wrote: > On Thu, 2015-09-17 at 16:31 -0700, Ming Lin wrote: > > On Wed, 2015-09-16 at 23:10 -0700, Nicholas A. Bellinger wrote: > > > Hi Ming & Co, > > > > > > On Thu, 2015-09-10 at 10:28 -0700, Ming Lin wrote: > > > > On Thu, 2015-09-10 at 15:38 +0100, Stefan Hajnoczi wrote: > >
2006 Jan 23
1
OFF TOPIC: Core router upgrade for a voip colocation center
Hello, hope this isn't too far offtopic here but being a troller for a long time here I've realized there is a great knowledge base so I wanted to at least see if i could get some tips. I help run a small colocation company in California and I am in the middle of recommending a new 'core router' platform for our network. We offer mainly colo and dedicated servers, and several of
2007 Nov 14
10
[GE users] Apple Leopard has dtrace -- anyone used the SGE probes/scripts yet?
Hi, Chris (cc) and I try to get the SGE master monitor work with Apple Leopard dtrace. Unfortunately we are stuck with the error msg below. Anyone having an idea what could be the cause? What I can rule out as cause is function inlining for the reasons explained below. Background information on SGE master monitor implementation is under http://wiki.gridengine.info/wiki/index.php/Dtrace
2020 Aug 19
39
a saner API for allocating DMA addressable pages
Hi all, this series replaced the DMA_ATTR_NON_CONSISTENT flag to dma_alloc_attrs with a separate new dma_alloc_pages API, which is available on all platforms. In addition to cleaning up the convoluted code path, this ensures that other drivers that have asked for better support for non-coherent DMA to pages with incurring bounce buffering over can finally be properly supported. I'm still a
2015 Nov 20
15
[RFC PATCH 0/9] vhost-nvme: new qemu nvme backend using nvme target
Hi, This is the first attempt to add a new qemu nvme backend using in-kernel nvme target. Most code are ported from qemu-nvme and also borrow code from Hannes Reinecke's rts-megasas. It's similar as vhost-scsi, but doesn't use virtio. The advantage is guest can run unmodified NVMe driver. So guest can be any OS that has a NVMe driver. The goal is to get as good performance as
2015 Nov 20
15
[RFC PATCH 0/9] vhost-nvme: new qemu nvme backend using nvme target
Hi, This is the first attempt to add a new qemu nvme backend using in-kernel nvme target. Most code are ported from qemu-nvme and also borrow code from Hannes Reinecke's rts-megasas. It's similar as vhost-scsi, but doesn't use virtio. The advantage is guest can run unmodified NVMe driver. So guest can be any OS that has a NVMe driver. The goal is to get as good performance as
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
...lt;6%xe)lW9z$= zm?7bbKqF9e1fKk)E2gl;c(I7G#@-L8sv)SBQe6Qe)WE=C<>=9)h5HQ-hYlTLz<>cX zY}k;kTeo6rTKnq4Crp??T3Q;jXU}Ge=gWNl;d-D}I02T!)8zuTwzeEQ773l2K(hQv z`9U$a0CNioFQ2k>l&%tAA{SS<5f{(7W$zF)^2>5#Dl=>9y)d47FO0ABdMQ!cIQ8pn zw&Z-k<$zG~&C5&5iUx*=ni34|S+gieizC(6qtbIfpRp9b&ib3vF6~*%c5`_LcBEZT z8t+?;Z?Ct@Z8x@e!>j8EKHk@pk9}5^^GG(=X7J(Vfp~|u)@x)0P@H<5boc6YuA6*) zBn|q#Q)zH0$w@<7l!vjMo8HcFwYe=3vo;`2?ZKEEZ}Y9kmwL`p{Z!?pU}Kt7+{`Ds zuv3FW#tqyqSPFvFiZbtnGHTBYLpjoNSavp+;lNGcsWqdijsW4HQmMAKZQEA)#TQ@P z*FRTEN(%k@^~21}j6eVU6AKHAst>9mX3d&KOiT<5zgSJP&|&...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...?x=6cg=p+tl64aC7Z29%Vf_A;MQV0cyYa8-CAe|FVvznk{4`PtL@;`^@3^o&?|b- z37UuxPdY7<T_H{c<wVp-mi^i&<MdEtu;H9#Ko-679~b8+tu-2uBaOu7|I#K-NOnae z#}3JjG={BG86N73G=_;%8GhZDu$Iv;IlbYN6BI?EktUH`@A`j~D>I*{ozJSweDa)- zbUyi%k4okRsM8tJ at 6AylMe^)?^CJ1_eADGyoz8bgX1-0GkaWHU^~$GJpfZVp8mYmO ziug!DWu$4OprP_ozP;>xXJ+Qx%n3>7+x&aV`$HVqC2!{O(Y!L!EYdu){Q0!IF<l^t zb0RVOvgXRIAWvq*5M**IQKHP!xKz}NOe%{r84*<S!H-8JzY_eUsVsD;AaT8hT$ssA zq=`*PjR?as(gY1!X&)W4sjR+~idG at 0tgc6;X@#f}mr7GqOC=1xjGv=;g=aNUwT&7r zr&9+<AD}A=iezi8HoC&@jA$PUtLRzn;H<h7XGR*Q#&$6|2aBc(-6A-gmkj4D{uZxI z...