similar to: [Bridge] D-Link cards unable to receive multicast traffic

Displaying 20 results from an estimated 1000 matches similar to: "[Bridge] D-Link cards unable to receive multicast traffic"

2003 Aug 19
2
rl(4) is broken in STABLE
Hi! Revisions 1.38.2.17/1.38.2.18 of src/sys/pci/if_rl.c (and corresponding 1.14.2.6 of src/sys/pci/if_rlreg.h) broke rl(4) at least for D-Link DFE 530TX+ 10/100BaseTX. I've sent PR an hour ago but still did not get its number. Meantime I've rolled back these revisions, rebuilt kernel and my NICs work again. Eugene Grosbein
2018 Mar 31
3
Writing tests with Filecheck without emitting output to stdin
That works. Thanks. One more followup question though. Once i run opt on bitcode, there is not useful output/transform on bitcode. this rpt files are extra. I am hoping to do something like this, ; RUN: FileCheck --input-file=a.rpt.gold --check-prefix=CHECK-A < a.rpt ; RUN: FileCheck --input-file=b.rpt.gold --check-prefix=CHECK-B < b.rpt i did not find much examples in tests hence
2007 Aug 03
1
D-Link DFE-580TX
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Has anyone here had any experience with D-Link's quad-port ethernet NIC, model DFE-580TX ? The people from Mikrotik says it can cause systemwide lockup, but from what I have been reading around, this board seem to work ok. This is the only quad-port NIC I have found with a reasonable price, so I'm seriously considering using it. Comments ?
2017 Oct 03
1
About LLVM Pass dependency
Hi Hongbin I am not quite familiar with AnalysisUsage, let me correct question a bit. I have read Writing Pass <http://llvm.org/docs/WritingAnLLVMPass.html#specifying-interactions-between-passes>, All examples that i see here are based on collecting information .i.e Analysis Passes. I wonder if this applies to Transformation passes also. e.g. void MyInliner::getAnalysisUsage(AnalysisUsage
2015 Jul 08
2
IPMI in Libvirt
Greetings all, I am looking for a solution to use IPMI (BMC) in with LibVirt (Virt-Manager). Actually there is a Customer behind this request as well. Trying to be short: We are looking for a Solution in OpenStack Environment. Customer wants to have the entire environment running in Virt-Manager (probably for a P.O.C or tests purposes). So here is what he is trying to do: http://red.ht/1HfNn9r
2011 Jan 21
2
Looping with incremented object name and increment function
Folks, I am trying to get a loop to run which increments the object name as part of the loop. Here "fit1" "fit2" "fit3" and "fit4" are linear regression models that I have created. > for (ii in c(1:4)){ + SSE[ii]=rbind(anova(fit[ii])$"Sum Sq") + dfe[ii]=rbind(summary(fit[ii])$df) + } Error in anova(fit[ii]) : object 'fit' not found
2007 Jan 11
2
Account is not authorized to log in from this station
Hello All, When I try to connect to the samba installed linux machine from windows I get the message "Account is not authorized to log in from this station". I have made three entries(user name and password) in the smbpasswd file. But if I log in the windows machine using these user names and passwords I get the message "Account is not authorized to log in from this station".
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Oops. My bad. I mean to write match-file being my match pattern. and a.rpt being file generated by opt. ;RUN: FileCheck <match-file>a.rpt.gold --input-file=a.rpt. mahesh On Sat, Mar 31, 2018 at 6:57 PM, Mahesh Attarde <coder.mahesh at gmail.com> wrote: > That works. Thanks. > > One more followup question though. > Once i run opt on bitcode, there is not useful
2005 Apr 04
1
Running POP3 with two different ports?
Hi everyone! I need to run Dovecot with two ports (eg 110 and 2110). Any ideas? Regards, Andres Argentina
2017 Oct 03
2
About LLVM Pass dependency
Hello I am working on pass which has dependency on multiple passes. Say D1,D2,D3 I used INITIALIZE_PASS_BEGIN INITIALIZE_PASS_DEPENDENCY(D1) INITIALIZE_PASS_DEPENDENCY(D2) INITIALIZE_PASS_DEPENDENCY(D3) INITIALIZE_PASS_END. While running it through opt tool it, I had to specify this D1,D2,D3 pass names to get this pass executed before my pass. Is there way, to let llvm pass manager to know
2018 Mar 31
4
Writing tests with Filecheck without emitting output to stdin
Hello I have pass operating on bitcode file which produces more than one equivalent representation. opt --my-pass <%s | Filecheck %s --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without writing all 3 files to stdin. I have considered CHECK-LABEL for each. it creates bulky checks. Thanks Mahesh -------------- next part -------------- An HTML attachment was
2006 Sep 04
3
Subsetting vectors based on condition
Hello, I have a question regarding subsetting of vectors. Here's an example of what I'm trying to do: vect.1 <- c(76,195, 290, 380) vect.2 <- c(63, 95, 133, 170, 215, 253, 285, 299, 325, 375) I would like to subset vect.2 so that it has the same length as vect.1, and its numbers are the first corresponging higher value compared to vect.1. The output should be: final.output =
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Hi Mahesh, On 31 March 2018 at 11:45, Mahesh Attarde via llvm-dev <llvm-dev at lists.llvm.org> wrote: > opt --my-pass <%s | Filecheck %s > > --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without > writing all 3 files to stdin. You can run FileCheck over them on separate RUN lines assuming you know the filename (which I assume you do since you'd be
2002 Oct 25
1
PXE: media test failure
Hi ! I'm using PXE to boot a Linux on a DLink DFE-530TX card. Everything worked well until I installed a Windows98 on it (please, foregive me...). Since the Windows drivers for that NIC were installed, I 'm unable to boot PXE, and I get the error: PXE-E61: Media test failure, check cable Any clue on how to make PXE work as before ? Cheers, -- Ludovic DROLEZ
2017 Dec 11
2
target porting : objdump is not giving proper registers.
Hi, we have seen proper register numbers when we have generated assembly files through clang but when we generated dump files from object file then we didn't see expected register numbers. Note : all registers are replaced with R0 *Disassembly of section .text:00000000 <main>: 0: 3000ffcc addik r0, r0, -52 4: f8000000 swi r0, r0, 0 8:
2018 Apr 01
0
Writing tests with Filecheck without emitting output to stdin
See: http://llvm.org/docs/CommandGuide/FileCheck.html It is not required to pipe output to FileCheck; there is the --input-file option, which allows you to run FileCheck on an existing disk file. Something like this: FileCheck %s --input-file a.rpt --check-prefix=A FileCheck %s --input-file b.rpt --check-prefix=B FileCheck %s --input-file c.rpt --check-prefix=C If there are common parts to each
2018 Apr 23
0
llc tool followed by g++ : Abnormal behavior while compiling assembly to object file
Hi Mahesh, On 23 April 2018 at 10:51, Mahesh Attarde via llvm-dev <llvm-dev at lists.llvm.org> wrote: > movq .str at GOTPCREL(%rip),%rdi > movq .str.1 at GOTPCREL(%rip),%rsi That's quite strange. You wouldn't normally expect to access a constant string via the GOT. It looks like LLVM has decided to put the symbols in an odd section, so it'd be a good idea to make sure
2018 Jun 30
0
[Bug 1266] New: bridge-nf-filter-pppoe-tagged mtu bug?
https://bugzilla.netfilter.org/show_bug.cgi?id=1266 Bug ID: 1266 Summary: bridge-nf-filter-pppoe-tagged mtu bug? Product: netfilter/iptables Version: linux-2.6.x Hardware: All OS: RedHat Linux Status: NEW Severity: enhancement Priority: P5 Component: bridging Assignee:
2011 Jul 14
9
Extension wise dialplan
Hi all, I have n no. of extensions in my dialer. from 456 to 556 extensions. I was created 2 other extensions 667 and 668 I need to allow only STD calls to go from this extensions. These all extensions are same context . I need to define the STD dialplan for only this 2 extensions. how I can ? Best Regards, Mahesh Katta *BUZZ**WORKS* Business Services Private Limited BANGALORE | CHENNAI |
2008 Aug 07
3
problem running R
Dear all, I am new to R and very basic idea about it. While running some codes i am getting following error: "Error in m[indexMax] : invalid subscript type 'list' " I am not sure about this error. Any way to correct it. mahesh [[alternative HTML version deleted]]