search for: grrrrrrr

Displaying 4 results from an estimated 4 matches for "grrrrrrr".

Did you mean: ggrrrrrr
2010 May 29
4
ARGH... once again samba causes "permission" errors.
...Total size: 97.0 GB Why am I getting ANY permission problems??? Frankly. I don't think it is a permission problem. (I set log level to 10; the output is long so I won't include it because I looked through it and didn't see any errors reported or any mention of permission denied.) GRRRRRRR! It gets worse. a 90GB NAS storage is pretty useless. The NAS is actually a 6TB Raid5 array with an XFS filesystem. But if I actually mount it.... # /etc/init.d/smb stop # mount /mnt/nas # ls -al /mnt/nas total 8 drwxrwxrwx 2 nas nas 6 May 28 18:11 . drwxrwxrwx 3 root root 4096 May 28 15:04...
2011 Jan 27
7
Xen watchdog patch disposition?
Jeremy, while originally I had hoped this patch, sitting in xen/next, would get pushed for .37, that didn''t happen and now the .38 merge window was missed too. Trying to get this to Linux on my own seems inappropriate, so can I hope that you will include this with whatever other changes you intend to push for .39? Thanks, Jan _______________________________________________ Xen-devel
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...alno(og)); } // EOS test has to be up front because, of course, everything in the universe // releases the page so you have to get to it *before* it disappears // and store it yourself in spite of the fact that the page stores it // very nicely (until it gets freed). Grrrrrrr ... if (ogg_page_eos(og)) { flgEOSPage = 1; dprintf("End of stream found\n"); } s_rv0 = ogg_stream_pagein(os, og); dprintf("Page in: %d %d %p %p\n", pageCount, s_rv0, os, og); if (s_rv0 < 0) { // FIXME: ARRRGGGGHHH!!! ogg_stream_pagein rele...
2015 Sep 15
1
[PATCH] Add 'make installcheck' rule to test installed packages.
This is my proposed alternative to the complicated test framework (https://www.redhat.com/archives/libguestfs/2015-August/msg00022.html). In this patch, when we want to run tests on installed packages we just copy in the installed binaries over the source directory, and run the test suite as normal. This is basically the same as the current (not used) contrib/make-check-on-installed.pl script,