search for: hmf

Displaying 18 results from an estimated 18 matches for "hmf".

Did you mean: hm
2011 Mar 12
2
plot generates graph with coordinantes written over it
...having this strange problem. http://r.789695.n4.nabble.com/file/n3350024/bad2.png I have txt file of this format (X.X, Y.Y - random numbers, ...) with data points: nm A nm A nm A X.X Y.Y X.X XX X.X X.X Y.Y Y.Y Y.Y Y.Y My script looks like this: require(graphics) require(stats) par(mfrow=c(1,1)) HMF=read.table("D:/BIOTECHLAB1/DATA-zprac/10mg 1-7cp.txt", header = FALSE, sep = "", dec = ".",fileEncoding = "", encoding = "unknown", skip=19) attach(HMF) plot(x=V1,y=V2,type = "l",main = HMF,xlab = substitute(lambda (nm)), ylab =substitute(...
2016 Jul 19
4
[PATCH v3] virtio_blk: Fix a slient kernel panic
...At that moment, kernel will panic in guest machine, if virtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> --- v2: - Remove useless initialisation to NULL v1: - Refactor the patch to make code more readable --- drivers/block/virtio_blk.c | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff...
2016 Jul 19
4
[PATCH v3] virtio_blk: Fix a slient kernel panic
...At that moment, kernel will panic in guest machine, if virtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> --- v2: - Remove useless initialisation to NULL v1: - Refactor the patch to make code more readable --- drivers/block/virtio_blk.c | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff...
2003 Oct 01
4
Solving a tridiagonal system
...nd off-diagonal elements of A as vectors, i.e. a = A[i,i-1], b = A[i,i] and c = A[i,i+1]. So I have three vectors that define A, along with a solution vector d. The conventional method of solving such systems is to use the so-called "Thomas algorithm", see e.g. <http://www.enseeiht.fr/hmf/travaux/CD0001/travaux/optmfn/hi/01pa/hyb74/node24.html>. This is very easy to code, but much more difficult to "vectorize". Is anyone aware of a library that contains a fast implementation of this algorithm? Another alternative is to use backsolve. I can easily eliminate the lower di...
2016 Jun 27
2
[PATCH] virtio: Return correct errno for function init_vq's failure
...st can support multiple virtual queues, and we fails to allocate necessary memory structures for vq, kernel may crash due to incorrect returning. To fix it, kernel will return correct value in init_vq. Signed-off-by: Minfei Huang <mnghuan at gmail.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> --- drivers/block/virtio_blk.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 42758b5..40ecb2b 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -393,11 +393,10...
2016 Jun 27
2
[PATCH] virtio: Return correct errno for function init_vq's failure
...st can support multiple virtual queues, and we fails to allocate necessary memory structures for vq, kernel may crash due to incorrect returning. To fix it, kernel will return correct value in init_vq. Signed-off-by: Minfei Huang <mnghuan at gmail.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> --- drivers/block/virtio_blk.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 42758b5..40ecb2b 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -393,11 +393,10...
2016 Jul 18
2
[PATCH v2] virtio_blk: Fix a slient kernel panic
...At that moment, kernel will panic in guest machine, if virtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> --- v1: - Refactor the patch to make code more readable --- drivers/block/virtio_blk.c | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/drivers/block/virtio_blk.c b...
2016 Jul 18
2
[PATCH v2] virtio_blk: Fix a slient kernel panic
...At that moment, kernel will panic in guest machine, if virtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> --- v1: - Refactor the patch to make code more readable --- drivers/block/virtio_blk.c | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/drivers/block/virtio_blk.c b...
2016 Jul 06
0
[PATCH] virtio: Return correct errno for function init_vq's failure
...; queues, and we fails to allocate necessary memory structures for vq, > kernel may crash due to incorrect returning. > > To fix it, kernel will return correct value in init_vq. > > Signed-off-by: Minfei Huang <mnghuan at gmail.com> > Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> > --- > drivers/block/virtio_blk.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c > index 42758b5..40ecb2b 100644 > --- a/drivers/block/virtio_blk.c > +++ b/driver...
2016 Jul 18
0
[PATCH v2] virtio_blk: Fix a slient kernel panic
...anic in guest machine, if virtio is used to drive disk. > > To fix this bug, we should take care of allocation failure, and return > correct value to let caller know what happen. > > Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> > Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> > Signed-off-by: Minfei Huang <mnghuan at gmail.com> > --- > v1: > - Refactor the patch to make code more readable > --- > drivers/block/virtio_blk.c | 32 +++++++++++--------------------- > 1 file changed, 11 insertions(+), 21 deletions(-) > &...
2016 Jul 19
0
[PATCH v3] virtio_blk: Fix a slient kernel panic
...anic in guest machine, if virtio is used to drive disk. > > To fix this bug, we should take care of allocation failure, and return > correct value to let caller know what happen. > > Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> > Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> > Signed-off-by: Minfei Huang <mnghuan at gmail.com> > --- > v2: > - Remove useless initialisation to NULL > v1: > - Refactor the patch to make code more readable > --- > drivers/block/virtio_blk.c | 26 ++++++++------------------ > 1 file ch...
2016 Jul 29
0
[PATCH v3] virtio_blk: Fix a slient kernel panic
...panic in guest machine, if virtio is used to drive disk. > > To fix this bug, we should take care of allocation failure, and return > correct value to let caller know what happen. > > Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> > Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> > Signed-off-by: Minfei Huang <mnghuan at gmail.com> > --- > v2: > - Remove useless initialisation to NULL > v1: > - Refactor the patch to make code more readable > --- > drivers/block/virtio_blk.c | 26 ++++++++------------------ > 1 file ch...
2016 Aug 09
0
[PATCH RESEND] virtio_blk: Fix a slient kernel panic
...irtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Reviewed-by: Cornelia Huck <cornelia.huck at de.ibm.com> Reviewed-by: Stefan Hajnoczi <stefanha at redhat.com> --- drivers/block/virtio_blk.c | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/drivers/block/virtio_blk....
2016 Aug 09
0
[PATCH RESEND] virtio_blk: Fix a slient kernel panic
...irtio is used to drive disk. To fix this bug, we should take care of allocation failure, and return correct value to let caller know what happen. Tested-by: Chao Fan <fanc.fnst at cn.fujitsu.com> Signed-off-by: Minfei Huang <mnghuan at gmail.com> Signed-off-by: Minfei Huang <minfei.hmf at alibaba-inc.com> Reviewed-by: Cornelia Huck <cornelia.huck at de.ibm.com> Reviewed-by: Stefan Hajnoczi <stefanha at redhat.com> --- drivers/block/virtio_blk.c | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/drivers/block/virtio_blk....
2006 May 17
3
Off topic --- help in locating a source.
Apologies for the off-topic question; as usual I'm trying to draw upon the unparalleled knowledge and sagacity of the r-help list. Please reply off-list if you can help me out. A collaborator of mine found a formula we need, on sheets which he had photocopied out of a book, some years ago. He cannot remember which book (he's getting to be as senile and forgetful as I am, poor bloke!).
2006 Jul 20
1
samba as pdc in Ubuntu dapper, fails on ps$ join?
Hola, I've done everything as correct as I can see in smb.conf under fresh ubuntu 6.06 fully updated install to have it run as a PDC on hostname florentine, domain DAVEYST. There are no testparm errors. I've added users with useradd and smbpasswd -a I've added machines with useradd and smbpasswd -a -m I can see the server in my network neighbourhood and access/browse folders on
2008 May 21
0
Errors in using gdb (PR#11496)
...ZJAjcDBfAZPFlzloP17Z+Tmdznzy ieV4BjiHw4FPw/fI5NQ0z4rznPkkwy7sZ+UmoL0+NU3v2TyKcuZb/Pgz7SDu+sy3ISeg/aqZ uxW2KjOf8pIdIKv7B+3qqkR7D4i6ufhwfTMmtfGi1s+X3PtGx5f6LETl1rDRMhfSdhWpjiCR AFTAVeNasQpol3qPLtm5DWzIzeardLSFNutG+7WW7ALUCFdLDzBa5uzlhlGQ6d76fTNb2m6e v0H7EtDOwSr6wqM/l/fy3l4Xfru5LthelCM/EIp1AXfZIx/dyckEhmFFBmmkwdhc+DzHFY1y hhnv5b1duNGPfuIwBtzXTKzyzLkcqlyQjOwSp6E6TOPgJbMkJ+oxtyxBO2XkS7qxvoZygIFx IzC3HSAZ987LMrEcpr4XoAIunMdWnotGQ7iZSID1bmkwCX5moC7BNuSJuWvJUvQV4IJ2pQ7I ENe6sTxd9s7XBJhPM6gDU+gqO2tTgXb5SaJqx3v4H/DP0UGcHXXxsgUR5o64UZAejBZlwhis 0Sqrs6CdV0OYT2kh4BPq4C7ppqQH2Bu44mGIWMJ76W9VSnh1KE5denvwrkpUuEL...
2004 Oct 28
5
How to help improving Wine?
Hi, I really did my best to understand how I can help improving Wine, but I did not succed. Well, everything started when I installed a win application on my Debian 3.1, Wine 2004.07.16 deb (clean install, no dlls). The application is ALOHA (http://www.epa.gov/ceppo/cameo/aloha.htm) It's a free application from US-Environment Protection Agency used for chemical emergency planning (I am an