similar to: [Bridge] Re: IPv6 bridging

Displaying 20 results from an estimated 5000 matches similar to: "[Bridge] Re: IPv6 bridging"

2004 Nov 23
0
Re: R problems [Debian testing]
Zoltan, On Tue, Nov 23, 2004 at 04:04:14AM -0800, Zoltan Nagy wrote: > Hi, > > I wrote you this email because I have some problems > with > the R library's. I use R Version 2.0.0 and it cannot > load > some libraries, eg: > library(); > MASS ** No title available > (pre-2.0.0 install?) ** You need a version of the r-cran-vr package compiled
2009 Nov 28
1
(samba ~ shlight): negprot protocols not 0-terminated
hello, i'm trying to connect to my samba server from an openbsd system smbclient works perfectly from the client, but if i try to mount the share using shlight it refuses the connection and logs: negprot protocols not 0-terminated i was unable to find any occurances of this problem, i've read that the field should contain the host's name as a zero terminated string. server:
2012 Feb 24
0
Wine release 1.4-rc5
The Wine development release 1.4-rc5 is now available. What's new in this release (see below for details): - Bug fixes only, we are in code freeze. The source is available from the following locations: http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.4-rc5.tar.bz2 http://prdownloads.sourceforge.net/wine/wine-1.4-rc5.tar.bz2 Binary packages for various distributions will be
2005 Jul 17
2
HFC BRIstuff woes
Hi All, It's broken !! (drat) Asterisk if failing to load with the following error (taken from end of /var/log/asterisk/full) after adding bristuff. Can anyone help please? Jul 17 19:57:54 VERBOSE[2503]: == Registered channel type 'Phone' (Standard Linux Telephony API Driver) Jul 17 19:57:54 VERBOSE[2503]: [chan_zap.so]Jul 17 19:57:54 VERBOSE[2503]: [chan_zap.so] =>
2009 May 05
1
[LLVMdev] [PATH] Fixes for the amd64 JIT code
Hi, It looks like the problem was with the RIP relative addressing. The original patch mistakenly removed the || DispForReloc part because I tough that the RIP relative addressing was done by the SIB encodings, but it is actually done by the shorter ones. The attached patch seems to work for me on linux and when simulating darwin by forcing some variables in X86TargetMachine.cpp to their darwin
2009 May 04
1
[LLVMdev] [PATCH] Add support for accessing the FS segment register on X86
Hi, If I'm writing a JIT, and want to access the TLS variables of the app containing the JIT, I can't use thread_local since that only works for variables declared in LLVM IL and/or managed by the ExecutionEngine. While this patch allows a JIT to generate the TLS accesses itself, if it knows the tls offset of the variable in question. Zoltan On Tue, May 5, 2009 at
2009 May 05
0
[LLVMdev] [PATH] Fixes for the amd64 JIT code
Hi, I can't reproduce these failures on my linux machine. The test machine seems to be running darwin. I suspect that the problem might be with RIP relative addressing, or with the encoding of R12/R13, but the code seems to handle the latter, since it checks for ESP/EBP which is the same as R12/R13. Zoltan On Tue, May 5, 2009 at 8:18 PM, Evan Cheng <evan.cheng at
2008 Dec 09
1
[LLVMdev] [PATH] Add sub.ovf/mul.ovf intrinsics
Hi, The add.with.overflow instrinsics don't seem to work with constant arguments, i.e. changing the call in add-with-overflow.ll to: %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 0, i32 0) causes the following exception when running the codegen tests: llc: DAGCombiner.cpp:646: void<unnamed>::DAGCombiner::Run(llvm::CombineLevel): Assertion `N->getValueType(0) ==
2009 May 04
0
[LLVMdev] [PATCH] Add support for accessing the FS segment register on X86
Hello, The preferred way to do TLS is to use the thread_local keyword. There is x86-64 support for thread_local on ELF; if you need it for other targets, I recommend looking at adapting it. Dan On May 4, 2009, at 2:59 PM, Zoltan Varga wrote: > Hi, > > Here is an updated version of the patch using address space 257. > > Zoltan > > On Mon, May 4, 2009 at
2009 Sep 06
0
[LLVMdev] loads from a null address and optimizations
How about this: 1. A custom pass run at the beginning that inserts a null check before every load/store: if ( ptr == null ) trap; Then if any pointers get optimized to null, the if condition becomes a constant true,and the trap call should become unconditional. 2. A custom pass at the end that takes out every remaining null check that your first pass inserted. It should first check whether
2008 Dec 09
0
[LLVMdev] [PATH] Add sub.ovf/mul.ovf intrinsics
Applied. Thanks, Zoltan! -bw On Tue, Dec 9, 2008 at 1:12 PM, Zoltan Varga <vargaz at gmail.com> wrote: > Hi, > > Attached is the final version of the patch, adding the requested > FIXME. If this is ok, can > somebody check it in ? > > thanks > > Zoltan > > On Tue, Dec 9, 2008 at 9:58 PM,
2009 Dec 08
0
[LLVMdev] LLVM intrinsic for SSE ANDPS instruction
Hi Zoltan, I think the bitcast operation is rather painless to use. And if you want to be able to execute it on a float vector you could try putting the and operation in a function with inline linkage and that would be all that's needed to convert over and back. BTW, bitcasting is a no-op conversion in actual code. --Sam Crow > >From: Zoltan Varga <vargaz at gmail.com>
2009 Sep 05
0
[LLVMdev] loads from a null address and optimizations
Hi Zoltan, We've come across this before where people meant to induce a trap by dereferencing a null. It doesn't work for LLVM (as you found out). Essentially, it's a valid transformation to turn this into unreachable. The better solution is to use something like __builtin_trap. -bw On Sep 5, 2009, at 2:19 PM, Zoltan Varga <vargaz at gmail.com> wrote: > >
2009 May 05
2
[LLVMdev] [PATH] Fixes for the amd64 JIT code
Hi Zoltan, The part that determines whether SIB byte is needed caused a lot of regressions last night (see Geryon-X86-64 etc.). I've reverted it for now. Please take a look. Thanks, Evan On May 4, 2009, at 3:49 PM, Evan Cheng wrote: > Committed as revision 70929. Thanks. > > Evan > > On May 3, 2009, at 8:29 PM, vargaz wrote: > >> >> Hi, >> >>
2009 Dec 08
2
[LLVMdev] LLVM intrinsic for SSE ANDPS instruction
Hi, The arguments to the 'and' instruction must be integer types or vectors of integer types. If I have a compiler whose source language has support for andps by having its own intrinsics, then I would have to generate code to convert the float vector into an int vector before passing it to llvm's and instruction, then convert the result back.
2012 Mar 02
0
Wine release 1.4-rc6
The Wine development release 1.4-rc6 is now available. What's new in this release (see below for details): - Bug fixes only, we are in code freeze. The source is available from the following locations: http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.4-rc6.tar.bz2 http://prdownloads.sourceforge.net/wine/wine-1.4-rc6.tar.bz2 Binary packages for various distributions will be
2009 Sep 05
4
[LLVMdev] loads from a null address and optimizations
Hi, I don't intentionally want to induce a tramp, the load null is created by an llvm optimization pass from code like: v = null; ..... v.Call (); Zoltan On Sat, Sep 5, 2009 at 11:39 PM, Bill Wendling <isanbard at gmail.com> wrote: > Hi Zoltan, > > We've come across this before where people meant to induce a trap by > dereferencing a null. It
2009 May 04
0
[LLVMdev] [PATH] Fixes for the amd64 JIT code
Committed as revision 70929. Thanks. Evan On May 3, 2009, at 8:29 PM, vargaz wrote: > > Hi, > > If this looks ok, could somebody check it in ? > > thanks > > Zoltan > > > Evan Cheng-2 wrote: >> >> Looks good. Thanks. >> >> Evan >> >> On May 1, 2009, at 8:40 AM, Zoltan Varga wrote: >>
2015 Aug 12
0
CentOS-docs Digest, Vol 105, Issue 7
------------------ Original ------------------ From: "centos-docs-request"<centos-docs-request at centos.org>; Date: Wed, Aug 12, 2015 08:00 PM To: "centos-docs"<centos-docs at centos.org>; Subject: CentOS-docs Digest, Vol 105, Issue 7 Send CentOS-docs mailing list submissions to centos-docs at centos.org To subscribe or unsubscribe via the World Wide
2015 Aug 12
0
Contributing to the CentOS Wiki pages
On 11 August 2015 at 15:29, Zoltan Porkolab <zoltan.dba at gmail.com> wrote: > Hi CentOS-Docs Team, > > > I would like to contribute to the CentOS Wiki. > > My username is: ZoltanPorkolab > Subject: Deploying Oracle Database on CentOS > Location: (HowTos#Non CentOS Applications) http://wiki.centos.org/HowTos > > > > I would like to contribute how to