Displaying 20 results from an estimated 10000 matches similar to: "server network card"
2009 Jan 14
6
hardware info
Hi
How can I know the hardware info eg: type of memory
No need to turn off the machine
Thank you
2007 Oct 15
1
networking - Scalable I/O on Linux
Hi all
I am looking for the ethernet card for linux. In the
intel website
1/ I don't know what is the meaning of Scalable I/O on
Linux.
2/ ls the big different between desktop and server
card?
Thank you
http://www.intel.com/network/connectivity/products/pro1000pt_quad_server_adapter.htm
Load balancing on multiple CPUs Increases
performance on multi-processor systems by efficiently
2008 Oct 17
3
reuse the history
Hi all
I want to reuse command in the shell historys
Which command I can only select "traceroute 192.168.0.5" to run?
$ history |grep traceroute
26 traceroute 192.168.0.5
27 traceroute -n 192.168.0.5
28 traceroute 192.168.0.10
29 traceroute yahoo.com
46 traceroute 192.168.0.33
eg:
history |grep traceroute | awk '{ print$2 " " print$3}' | grep
2007 Sep 26
3
remote tar via ssh
Hi all
Can I use ssh to have remote tar files from machine A
to machine B?
ssh from machine A to machine B
tar all files in machine B to exact to machine A
Thank you
____________________________________________________________________________________
Got a little couch potato?
Check out fun summer activities for kids.
2007 May 31
2
redhat / whitebox
Hi all
Can you tell me what is the different between fedora /
redhat enterprise / centos and whitebox?
Thank you
____________________________________________________________________________________
8:00? 8:25? 8:40? Find a flick in no time
with the Yahoo! Search movie showtime shortcut.
http://tools.search.yahoo.com/shortcuts/#news
2008 Dec 02
3
mysql question
Hi
?
Do you know any good mysql mailing list?
?
I have question what is the different between
?
/var/lib/mysql/mysql.sock
/var/lib/mysql/mysqld.sock
Thank you
__________________________________________________________________
Instant Messaging, free SMS, sharing photos and more... Try the new Yahoo! Canada Messenger at http://ca.beta.messenger.yahoo.com/
-------------- next part
2010 Feb 04
2
pls help about changing network card but assign to another ethx
Hi
I change eth1 from realtek to dlink but the centos is showing eth2 instead of eth1
In another version of linux, I can change 70-persistent-net.rules but
I check /etc/udev/rules.d/70-persistent-net.rules but it doesn't have the file 70-persistent-net.rules
please help
Thank you
Send instant messages to your online friends http://uk.messenger.yahoo.com
2007 Nov 26
1
boot is stopping in the system log gor status for a while
Hi all
The system is stopping in the system log gor status.
what is next? how do I check
thank you
____________________________________________________________________________________
Never miss a thing. Make Yahoo your home page.
http://www.yahoo.com/r/hs
2016 Nov 27
3
llvm optimizer turning musttail into tail
r287955 seems like it might be related.
-- Sean Silva
On Sat, Nov 26, 2016 at 4:06 PM, Sean Silva <chisophugis at gmail.com> wrote:
> This sounds buggy to me. What pass is doing this?
>
> -- Sean Silva
>
> On Thu, Nov 24, 2016 at 5:39 AM, Carlo Kok via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
>>
>> I've got some calls like:
>>
2009 Dec 28
9
mkdir this "." directory
Hi
I have this . folder under tmp
1/ How they can make it this folder?
2/ How can I remove it?
Thank you
Send instant messages to your online friends http://uk.messenger.yahoo.com
2018 Jul 30
3
lld/mach-o x86_64 asserts
Sorry, I was thinking to review the test but didn't.
Is this test complete? It does invoke lld, but it didn't verify its output.
On Mon, Jul 30, 2018 at 2:03 PM Andrew Kelley <superjoe30 at gmail.com> wrote:
> Ping Rui. Is there anything else that needs to be done on this patch?
>
> On Tue, Jul 17, 2018 at 6:58 AM, Carlo Kok via llvm-dev <
> llvm-dev at
2016 Nov 24
3
llvm optimizer turning musttail into tail
I've got some calls like:
musttail call void bitcast (i32 (i32, i8*, %Type*)* @MyMethod to void
(i32, i8*)*)(i32 %0, i8* %1)
ret void
Into something like:
%8 = tail call i32 @MyMethod(i32 %0, i8* %1, %Type* null)
ret void
I realize I'm losing a parameter there, but this is an interface jump
trick I use and relies on the end code being a 'jmp' (x86). I realize i
can probably
2017 May 30
2
Missing symbol __executable_start on Android when linking with LLD
When linking a project with lld, the android libc links to
__executable_start
which isn't defined when linking with lld (tried on x86), but is when
linking with gnu ld it seems.
I tried:
.globl __executable_start
__executable_start = __ehdr_start
as a workaround but seems to be ignored.
Anyone know a better workaround?
Thanks,
--
Carlo Kok
RemObjects Software
2019 May 08
2
taskpool exhaustion in lld/wasm
It's a wasm testcase that ends up with a 1 mb executable; after 15 minutes I killed it, it doesn't do anything (note that it's waiting on a conditional variable in ALL threads)
On Wed, May 8, 2019, at 14:32, Brian Cain wrote:
> Are you sure it's not just taking "a long time"? If that build machine doesn't have enormous amounts of memory you could end up with a
2018 Mar 30
0
[LLD] Mixing bitcode and native code
The problem is a bitcode implementation that has a stdcall function that's used from native code. 1 side has _elements_exception_handler, compiled that would be __elements_exception_handler at 20 due to stdcall. The native bit has the mangled name and the linker can't find it as the bitcode indexes have it without mangling.
I'll try to prepare a testcase when I get back in the office.
2017 Sep 18
5
Interleaved debug info on arm
When compiling code with lld -O0 --lto-O0 --eh-frame-hdr I get strange interleaved line info all
over the place:
...
0x00000000000595ac 22 11 1 0 0 is_stmt
0x00000000000595bc 25 7 1 0 0 is_stmt <<<
0x00000000000595c0 22 11 1 0 0 is_stmt
0x00000000000595c4 25 7 1 0 0 is_stmt <<<
0x00000000000595c8 26 7 1 0 0 is_stmt
but the code only has 1 reference to line 25 and the
2018 Mar 30
2
[LLD] Mixing bitcode and native code
Mixing native and bitcode files should just work, and that happens all the
time, as most programs need at least crt.o (which is a precompiled native
object file containing startup code).
Could you elaborate the issue a bit? It might be a bug in lld.
On Fri, Mar 30, 2018 at 3:11 AM Carlo Kok via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On Fri, Mar 30, 2018, at 11:23, Carlo Kok
2018 Jan 25
2
llvm::UpgradeDebugInfo does a full verification
Op 24-1-2018 om 18:26 schreef Adrian Prantl:
>
>
>> On Jan 23, 2018, at 11:01 PM, Carlo Kok via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi,
>>
>> I noticed that since recently UpgradeDebugInfo (Which is called for loading any bitcode from disk/memory) does a full bitcode verification. Is this on purpose or is this a mistake? Seems to have a
2018 Jul 17
2
lld/mach-o x86_64 asserts
Got it.
Attached are both the testcase & the fix.
On Tue, Jul 17, 2018, at 12:06, Carlo Kok via llvm-dev wrote:
> On Wed, Jul 11, 2018, at 16:45, Davide Italiano wrote:
> > On Tue, Jul 10, 2018 at 10:12 PM Carlo Kok via llvm-dev
> > <llvm-dev at lists.llvm.org> wrote:
> > >
> > > That sounds quite reasaonable; how does one usually go about doing that?