search for: leno

Displaying 14 results from an estimated 14 matches for "leno".

Did you mean: len
2007 Feb 19
0
supsmu produces segfault when handed all NAs. (PR#9519)
...ks y[c(2,5,10)] <- NA; # a few NAs is OK, warning generated tmp<- supsmu(x,y); y<- NA + y; # all NAs tmp <- supsmu(x,y); # oops *** caught segfault *** address 0xfffffff8, cause 'memory not mapped' Traceback: 1: .Fortran(R_supsmu, as.integer(leno), as.double(xo), as.double(y[ord]), as.double(wt[o rd]), as.integer(iper), as.double(span), as.double(bass), smo = double(leno), double(n * 7 ), double(1)) 2: supsmu(x, y) Possible actions: 1: abort (with core dump) 2: normal R exit 3: exit R without saving workspace...
2007 Aug 28
1
adding facts
Hello, I''m a little confused how to configure the puppermaster and puppetd to add a new fact. I''ve followed this tutorial http://reductivelabs.com/trac/puppet/wiki/AddingFacts but I''m with doubts about the factsource. In my puppetmaster I have the new fact in /etc/puppet/facts directory. fileserver.conf (on puppetmaster server): [files] path /etc/puppet/files [facts]
2007 Jan 26
1
directory, effect of recurse with ensure => directory
Hello, I wanted to say:: this file is a directory and must be created , this directory and it''s content should be owned by root:www-data with 640 mode for file and 750 for dirs: file { "base_admin": path => "/my/dir" owner => ''root'', group
2010 Apr 15
4
new ocfs2 release?
Hi ocfs2 developers, there are some news about the schedule for a new ocfs2 release that solve the actual bug/limitations? I can see an 1.4.7 release tagged here: http://oss.oracle.com/git/?p=ocfs2-1.4.git;a=summary Is there a planned release date? in my environment (about 5000000 files with 300000 new files/deletion per day) I see load until 1000 and I/O almost blocked for some hours of the
2007 Oct 29
2
Setting variables in modules - order important?
Puppeteers, For some reason I have to assign my variable before I include my class for the assignment to ''take''. I though the ordering was immaterial. Am I doing something wrong (again) or is this a funny? ----------------------- This works: <0> sa_dewha@engpsr0000.intranetdev.barcapdev.com (0 jobs)
2009 Jun 10
1
[PATCH] ocfs2: Prevent mount with "-o acl" if acl isn't supported.
Currently, if we don't enable CONFIG_OCFS2_FS_POSIX_ACL, ocfs2 will not support acl. That is OK. But in the following case: 1. kernel isn't built to support acl. 2. mount -t ocfs2 -o acl /dev/sdx /mnt/ocfs2. It sucesses. And what's more, if I do "mount|grep sdx" will get /dev/sdx on /mnt/ocfs2 type ocfs2 (rw,acl,heartbeat=none) So a normal user will just think acl now is ok
2008 Jul 10
1
Different size with du and ls
Hi all, I stumbled over a curious thing. The Linux tools "df" and "du" aren't working correctly on an OCFS2 filesystem. "df" shows approx. twice the size as there is on the volume. Here how I found out about this issue: - same dir(a few files more in OCFS but the files are ca. 12 kB in size), first on XFS second on the OCFS volume # du -ms
2007 Aug 22
12
Virtual resource not found
Hi All, I asked on IRC but didn''t have everything organized and most people seemed busy. Hoping someone can see what I''m missing here. I''m trying to create a network module, used similar to the ''users'' configuration described in the Best Practices document. I have a users module which has that and it works with similar syntax to below. If I
2005 May 16
5
xbox asterisk?
http://www.pbs.org/cringely/pulpit/pulpit20050512.html interesting comment this week about the Xbox - any intelligent thoughts here? I know the price point puts it above most users Asterisk outlay (I run mine on a $100 P3 -800) But interesting to see what happens if people start running video conferencing etc on their home asterisk servers, and lets face it where else can you buy this
2010 Jul 12
1
[PATCH] ocfs2: Don't duplicate page passes i_size during CoW.
During CoW, actually all the pages after i_size contains garbage data, so don't read and duplicate them. Signed-off-by: Tao Ma <tao.ma at oracle.com> --- fs/ocfs2/refcounttree.c | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index 1cf9cda..e082623 100644 --- a/fs/ocfs2/refcounttree.c +++
2007 Mar 26
7
"Could not run Puppet::Network::Client::Master" after 0.22.2 upgrade
After upgrading my puppetmaster server to 0.22.2 using David''s src RPM''s for RHEL4 rebuilt for x86_64 i am getting the following error when puppetd attempts a configuration run. Mon Mar 26 10:05:43 EST 2007 Puppet (err): Could not run Puppet::[1]Network::Client::Master: Invalid value ''nil'' for noop When puppetd is started the initial run is
2009 Mar 04
5
[PATCH 0/2] ocfs2: two bug fixes about xattr and inline-data
Mark and Joel, I found two serious bugs about xattr and inline-data. the first bug: in ocfs2_mknod(), we check and found the ACL or security xattr entry could be set into inode in ocfs2_calc_xattr_init(), then don't reserve block for them. But in ocfs2_mknod_locked(), if we found ocfs2 support inline-data, then set id_count with the max_inline_data. After that, we set acl/security xattr
2009 Feb 13
44
[PATCH 0/40] ocfs2: Detach ocfs2 metadata I/O from struct inode
The following series of patches attempts to detach metadata I/O from struct inode. They are currently tied together pretty tightly. Metadata reads happen via the ocfs2_read_blocks() functions, writes via both jbd2 and ocfs2_write_blocks(). - Each inode has a cache of associated metadata blocks stored on its ip_metadata_cache member. The ocfs2_read/write_blocks() functions take a struct
2009 May 03
6
[RFC] The reflink(2) system call.
Hi everyone, I described the reflink operation at the Linux Storage & Filesystems Workshop last month. Originally implemented as an ocfs2-specific ioctl, the consensus was that it should be a syscall from the get-go. Here's some first-cut patches. For people who have not seen reflink, either at LSF or on the ocfs2 wiki, the first patch contains Documentation/filesystems/reflink.txt to