Displaying 2 results from an estimated 2 matches for "55c55".
Did you mean:
5555
2007 Jun 18
1
two bessel function bugs for nu<0
...bessel_k(x, -alpha, expo) * ((ize == 1)? 2. : 2.*exp(-x))/M_PI
#---
#> bessel_k(x, -alpha, expo) * ((ize == 1)? 2. : 2.*exp(-2.0*x))/M_PI
#bug 2: besselY() for nu<0
#don't know how to check in R; a few random checks against mathematica 5.2
#fix:
#$ diff bessel_y_old.c bessel_y_new.c
#55c55
#< return(bessel_y(x, -alpha) + bessel_j(x, -alpha) * sin(-M_PI * alpha));
#---
#> return(bessel_y(x, -alpha) * cos(M_PI * alpha) - bessel_j(x,
-alpha) * sin(M_PI * alpha));
h.
--
----------------------------------
Hiroyuki Kawakatsu
Business School
Dublin City University
Dublin 9, Irelan...
2006 Mar 25
0
xen 3.0.1, mdadm and DEBUG problem
...s a hole at offset 0" and my fs
is switching to ro mode and nothing works until reboot.
So i decided to switch on DEBUG for my md to see what''s happening. So i
recompiled a domU kernel with the only change:
# diff linux-2.6.12-xenU/drivers/md/md.c~ linux-2.6.12-xenU/drivers/md/md.c
55c55
< #define DEBUG 0
---
> #define DEBUG 1
With this kernel my domU works fine with a lot of debugging info on my domU
console until i try to mdadm --set-faulty inside domU (which works without
DEBUG like a charm):
test:~# mdadm --set-faulty /dev/md0 /dev/sda1
Segmentation fault
test:~#
Then...