Displaying 10 results from an estimated 10 matches for "fxr".
Did you mean:
for
2018 Sep 17
1
Re: [PATCH nbdkit v2] common: isaligned: Use a macro instead of relying on implicit truncation.
On 9/17/18 4:41 PM, Nir Soffer wrote:
> The FreeBSD version:
>
> #define IS_ALIGNED <http://fxr.watson.org/fxr/ident?i=IS_ALIGNED>(n
> <http://fxr.watson.org/fxr/ident?i=n>,align) (!((uint32_t)(n
> <http://fxr.watson.org/fxr/ident?i=n>) & (align - 1)))
>
> http://fxr.watson.org/fxr/source/contrib/ncsw/inc/ncsw_ext.h#L182
Which truncates to 32 bits. But th...
2018 Sep 17
2
Re: [PATCH nbdkit v2] common: isaligned: Use a macro instead of relying on implicit truncation.
On 9/17/18 3:39 PM, Nir Soffer wrote:
>> +#define IS_ALIGNED(size, align) ({ \
>> + assert (is_power_of_2 ((align))); \
>> + !((size) & ((align) - 1)); \
>> +})
>>
>
> But this version will happily accept singed int, and I think this code
> behavior with signed int is undefined.
Well, sort of. Bit shifts
2018 Sep 17
0
Re: [PATCH nbdkit v2] common: isaligned: Use a macro instead of relying on implicit truncation.
...more restrictive license (GPLv2 in general);
> which means we can't copy it into nbdkit. (True, the definitions will
> look similar, but if we claim we copied from somewhere, that source had
> better be permissively licensed).
>
The FreeBSD version:
#define IS_ALIGNED <http://fxr.watson.org/fxr/ident?i=IS_ALIGNED>(n
<http://fxr.watson.org/fxr/ident?i=n>,align) (!((uint32_t)(n
<http://fxr.watson.org/fxr/ident?i=n>) & (align - 1)))
http://fxr.watson.org/fxr/source/contrib/ncsw/inc/ncsw_ext.h#L182
Nir
2015 Feb 15
0
freenas USB connection error
...o 5 Input/output error
However, this part indicates that there is a disconnect between the NUT driver (which printed "Permissions problem" due to an EPERM return code somewhere), and the kernel driver, which returned EIO.
Sadly, all nonzero error codes get mapped to EIO here:
http://fxr.watson.org/fxr/source/dev/usb/usb_generic.c?v=FREEBSD92;im=10#L911
If we look further into the kernel driver, it appears that there are some debugging messages:
http://fxr.watson.org/fxr/source/dev/usb/usb_request.c?v=FREEBSD92;im=10#L393
It is unclear as to whether this can be enabled with a...
2006 Jun 01
1
mac_bsdextended log information
Hey everyone,
I'm hoping someone can point me in the right direction. I'm running a 6.1 box with mac_bsdextended compiled. I've created my ugidfw rules, and all seems well in the universe.
I've got rules set up so the web process uid 80 and gid 80 can only read uid 1010 and gid 1010 owned files. When the web server tries to do something else, it throws an error such as:
2015 Feb 14
2
freenas USB connection error
Hi all,
I'm a new user trying to get a Proline UPS I1000 UPS to work with freenas 9.3
over USB. When running upsdrvctl I get a permission denied error.
Required debug info:
OS name and version,
# uname -a
FreeBSD freenas.local 9.3-RELEASE-p5 FreeBSD 9.3-RELEASE-p5 #2
r275790+f84e770: Tue Dec 23 23:35:33 PST 2014
root at
2008 Nov 14
3
FreeBSD 6.3 gre and traceroute
Stephen Clark wrote:
> Robert Noland wrote:
>> On Thu, 2008-11-13 at 07:48 -0500, Stephen Clark wrote:
>>> Julian Elischer wrote:
>>>> Stephen Clark wrote:
>>>>> Julian Elischer wrote:
>>>>>> you will need to define the setup and question better.
>>>> thanks.. cleaning it up a bit more...
>>>>
>>>>
2010 Sep 02
0
NCS - Cablemodem
...mgcp audit endpoint aaln/1 at 0-13-11-82-bd-a.ssw.dominio.net
Posting Request:
AUEP 3 aaln/1 at 0-13-11-82-bd-a.ssw.dominio.net MGCP 1.0 NCS 1.0
F: A
to 10.30.15.254:2427
MGCP read:
200 3 OK
A: a:PCMU;PCMA;G728;G729;G729E;G726-16;G726-24;G726-32;G726-40, p:10-30,
b:19-100, e:on, t:1, s:off,
v:L;fxr;rg;xal;x-xl;fm;lcs;sst;x-jc;x-pol;xrm,
m:sendrecv;sendonly;recvonly;inactive;netwloop;netwtest;replcate;confrnce,
dq-gi, sc-rtcp: 81/70;81/71;82/70;82/71;80/70;80/71, sc-rtp:
62/51;62/50;64/51;64/50;60/51;60/50
A: a:telephone-event, fmtp:"telephone-event 0-15,144,149,159"
A: a:image/t3...
2008 Nov 17
4
swap_pager: indefinite wait
Hello,
I manage a www (apache), database (postgresql) and e-mail (qmail) with
about 100 Internet domains.
We recently purchased a DELL MD3000i server with data access through
ISCSI protocol.
I installed a new server with FreeBSD 7.0 compiled kernel with ISCSI
(v. 2.1) and SCHED_ULE scheduler.
The server's local disk configuration is:
512 MB /
1024 MB SWAP
254 MB / var
2048MB / var/ qmail
512
2013 Jun 21
7
IRB help
I''m new to Ruby. I installed Rails on Windows 8.
When I type mkdir in IRB, I''m getting this. I tried running the IRB as
administrator too, and still get the same result
irb(main):001:0> mkdir lesson2
NameError: undefined local variable or method `lesson2'' for main:Object
from (irb):1
from C:/RailsInstaller/Ruby1.9.3/bin/irb:12:in