All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: firewall failover / cluster
From: freedom @ 2002-12-20  4:21 UTC (permalink / raw)
  To: 'Hauser Marcel', netfilter
In-Reply-To: <3E028951.8090800@gmx.ch>

Partially along this same subject, I am curious what is currently being
used in a fault tolerant AND load-balanced iptables configuration.
Perhaps a better question...is anybody using iptables in a HA, Load
balancing scenario?

Thanks!
Kameron


> -----Original Message-----
> From: netfilter-admin@lists.netfilter.org [mailto:netfilter-
> admin@lists.netfilter.org] On Behalf Of Hauser Marcel
> Sent: Thursday, December 19, 2002 9:07 PM
> To: netfilter@lists.netfilter.org
> Subject: firewall failover / cluster
> 
> hi all
> 
> What are you guys using in order to provide a fault toleranced
iptables
> firewall (master / slave ?)
> 
> Cheers Marcel
> 
> 
> 




^ permalink raw reply

* Re: Saving logs when system is started
From: Stephen Satchell @ 2002-12-20  4:28 UTC (permalink / raw)
  To: plachninka, linux-kernel
In-Reply-To: <001601c2a731$84f0b9c0$110011ac@home.sitech.pl>

At 08:37 AM 12/19/02 +0100, plachninka wrote:
>Hi
>Simple question: is any possibility to save system logs on floppy or
>anywhere when system is started from ramdisk?
>I still have a problem with scsi_hostadapter module and i would like to see
>startup logs

1.  Add to the end of rc the commands to copy the logs to floppy or anywhere.
2.  Add to the end of inittab a call, using :once:, to a script to copy the 
logs to floppy or anywhere.
3.  Write a daemon that mirrors the logs from time to time to floppy or 
anywhere, lauched from inittab or from whatever launches your daemons.


-- 
The human mind treats a new idea the way the body treats a strange
protein:  it rejects it.  -- P. Medawar
This posting is for entertainment purposes only; it is not a legal opinion.


^ permalink raw reply

* Adaptec 79xx support in 2.4.x
From: Walt H @ 2002-12-20  4:21 UTC (permalink / raw)
  To: linux-kernel

Hello,


I have a Tyan Thunder K7XPro based server with the onboard AIC7902 
controllers. At the present time, its is running 2.4.19 patched with 
Adaptec's source release for the SCSI support. Adaptec's drivers did not 
  seamlessly integrate into the 2.4.19 kernel. I found an old mail 
stating that support for this chipset would be added eventually. It 
doesn't appear to be added to the 2.4 series yet. Is there something I 
should be concerned about with regards to my server? The overall 
performance and stability seem fine so far, but it is a relatively new 
box with only about 1 month in production - so far so good :)

According to Justin at Adaptec, the source has been given to both Linus 
and Marcelo. I'd sure like to see it in mainline to avoid having to hack 
it in there as it stands. Thanks.

-Walt



PS. Please CC any responses as I'm not subscribed.


^ permalink raw reply

* Re: depmod errors in 2.5.52-bk
From: Alex Goddard @ 2002-12-19 23:18 UTC (permalink / raw)
  To: carbonated beverage; +Cc: linux-kernel
In-Reply-To: <20021219222336.GA17044@net-ronin.org>

On Thu, 19 Dec 2002, carbonated beverage wrote:

> Got tons of depmod errors for various symbols in a few drivers I built as
> modules, for such things as: kmalloc, __alloc_pages, schedule, etc.

Make sure you've got the latest version of module-init-tools, and that 
/sbin/depmod points to the latest version of depmod (so the kernel build 
scripts can find it).

-- 
Alex Goddard
agoddard@purdue.edu

^ permalink raw reply

* Lançamento do CD da Fator Cinco
From: Rock Shows Produções Artísticas @ 2002-12-20  3:59 UTC (permalink / raw)
  To: netdev

[-- Attachment #1: Type: text/html, Size: 1031 bytes --]

^ permalink raw reply

* Re: Intel P6 vs P7 system call performance
From: Stephen Rothwell @ 2002-12-20  4:03 UTC (permalink / raw)
  To: Alan Cox
  Cc: pavel, torvalds, hpa, drepper, jun.nakajima, matti.aarnio, hugh,
	davej, mingo, linux-kernel
In-Reply-To: <1040353515.30925.16.camel@irongate.swansea.linux.org.uk>

On 20 Dec 2002 03:05:15 +0000 Alan Cox <alan@lxorguk.ukuu.org.uk> wrote:
>
> On Wed, 2002-12-18 at 23:45, Pavel Machek wrote:
> > IIRC, segment 0x40 was special in BIOS days, and some APM bioses
> > blindly access 0x40 even from protected mode (windows have segment
> > 0x40 with base 0x400....) Is that issue you are hitting?
> 
> Well the spec says it is not special. Windows leaves it pointing to
> 0x400 and if you don't do that your APM doesn't work.

The problem with the new syscall stuff is fixed in BK (the GDT was no longer
long enough ...)

The 0x40 thing is set up and torn down for each BIOS call these days.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

^ permalink raw reply

* Re: Apache virtualhost not working behind firewall.
From: Matthew Hellman @ 2002-12-20  3:54 UTC (permalink / raw)
  To: Chip Upsal, netfilter
In-Reply-To: <3E0274C5.7080000@CyberWolf.com>

> INET_IP="216.184.9.5"
> #HTTP_IP="216.184.9.6"
> PWWEB_IP="216.184.9.30"
> PWODBC_IP="216.184.9.29"
> INET_IFACE="eth2"
>
> LAN_IP="192.168.1.15"
> LAN_IP_RANGE="192.168.1.0/24"
> LAN_BCAST_ADRESS="192.168.1.255"
> LAN_IFACE="eth0"
>
> DMZ_PWWEB_IP="192.168.0.2"
> DMZ_PWSQL_IP="192.168.0.3"
> DMZ_PWODBC_IP="192.168.0.4"
> DMZ_IP="192.168.0.1"
> DMZ_IFACE="eth1"
>
> $IPTABLES -A FORWARD -i $DMZ_IFACE -o $INET_IFACE -j ACCEPT
> $IPTABLES -A FORWARD -i $INET_IFACE -o $DMZ_IFACE -m state \
> --state ESTABLISHED,RELATED -j ACCEPT
> $IPTABLES -A FORWARD -i $LAN_IFACE -o $DMZ_IFACE -j ACCEPT
> $IPTABLES -A FORWARD -i $DMZ_IFACE -o $LAN_IFACE -j ACCEPT

These rules are pretty generous (well, except for nodes on your
$LAN_IFACE...which aren't allowed to use the Internet at all?...is that a
typo?).  You're allowing the firewall to forward packets unfiltered from the
DMZ to anywhere? Why even have a DMZ?
If you want to be a little more secure you could do something like this
instead:

$iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
$iptables -A FORWARD -i $LAN_IFACE -m state --state NEW -j ACCEPT

and then create rules only for NEW connections you want to allow in on
either $INET_IFACE or $DMZ_IFACE. For example:
$iptables -A FORWARD -m state --state NEW -i $INET_IFACE -p tcp -d
$DMZ_PWWEB_IP --dport 80 -j ACCEPT

> #
> # PWWEB
> #
> $IPTABLES -A FORWARD -p TCP -i $INET_IFACE -o $DMZ_IFACE -d $DMZ_PWWEB_IP
\
> --dport 80 -j allowed
> $IPTABLES -A FORWARD -p ICMP -i $INET_IFACE -o $DMZ_IFACE -d $DMZ_PWWEB_IP
\
> -j icmp_packets
> #
> # PWODBC
> #
> $IPTABLES -A FORWARD -p TCP -i $INET_IFACE -o $DMZ_IFACE -d $DMZ_PWODBC_IP
\
> --dport 80 -j allowed
> $IPTABLES -A FORWARD -p ICMP -i $INET_IFACE -o $DMZ_IFACE -d
> $DMZ_PWODBC_IP \
> -j icmp_packets
> #
> # PWWEB
> #
> $IPTABLES -t nat -A PREROUTING -p TCP -i $INET_IFACE -d $PWWEB_IP
> --dport 80 \
> -j DNAT --to-destination $DMZ_PWWEB_IP

I think this is your problem. I could look at the man pages to figure out if
that syntax is also correct but I'm too lazy;-)...it's usually done like
this:
$iptables -t nat -A PREROUTING -i $INET_IFACE -p tcp -d $PWWEB_IP --dport
80 -j DNAT --to $DMZ_PWWEB_IP

Goodluck!

Matt




^ permalink raw reply

* [BENCHMARK]unixbench result for kernel 2.5.52mm2 patch
From: Sowmya Adiga @ 2002-12-20  3:59 UTC (permalink / raw)
  To: linux-kernel

Hi,

Here are the unixbench result for kernel 2.5.52mm2 patch. Kernel
2.5.52mm2 patch when compared with kernel 2.5.52 showed drop in
performance in following tests:- 
========================================================================
====
                                          2.5.52-mm2     2.5.52
------------------------------------------------------------------------
---
File Copy 1024 bufsize 2000 maxblocks     66127.0       70152.0 
File Copy 256 bufsize 500 maxblocks       31927.0       35585.0
File Copy 4096 bufsize 8000 maxblocks     88357.0       89815.0 
========================================================================
===



------------------------------------------------------------------------
--
                            kernel 2.5.52-mm2
------------------------------------------------------------------------
---
BYTE UNIX Benchmarks (Version 4.1.0)
System -- Linux access1 2.5.52 #6 Thu Dec 19 11:35:51 IST 2002 i686
unknown Start Benchmark Run: Thu Dec 19 13:35:02 IST 2002 1 interactive
users. 1:35pm  up 4 min,  1 user,  load average: 0.03, 0.05, 0.01
lrwxrwxrwx    1 root     root            4 Oct 22 00:35 /bin/sh -> bash
/bin/sh: symbolic link to bash
/dev/hda2              8262068   3954172   3888200  51% /data

Dhrystone 2 using register variables    1804898.5lps (10.0 secs, 10
samples)
Double-Precision Whetstone              476.9 MWIPS  (10.0 secs, 10
samples)
System Call Overhead                    453721.4lps  (10.0 secs, 10
samples)
Pipe Throughput                         452309.6lps  (10.0 secs, 10
samples)
Pipe-based Context Switching            229778.5lps  (10.0 secs, 10
samples)
Process Creation                        4720.9lps    (30.0 secs,  3
samples)
Execl Throughput                        945.1 lps    (29.7 secs,  3
samples)
File Read 1024 bufsize 2000 maxblocks   244961.0KBps (30.0 secs,  3
samples)
File Write 1024 bufsize 2000 maxblocks  93000.0KBps  (30.0 secs,  3
samples)
File Copy 1024 bufsize 2000 maxblocks   66127.0KBps  (30.0 secs,  3
samples)
File Read 256 bufsize 500 maxblocks     114669.0KBps (30.0 secs,  3
samples)
File Write 256 bufsize 500 maxblocks    48744.0 KBps (30.0 secs,  3
samples)
File Copy 256 bufsize 500 maxblocks     31927.0 KBps (30.0 secs,  3
samples)
File Read 4096 bufsize 8000 maxblocks   337641.0KBps (30.0 secs,  3
samples)
File Write 4096 bufsize 8000 maxblocks  124089.0KBps (30.0 secs,  3
samples)
File Copy 4096 bufsize 8000 maxblocks   88357.0 KBps (30.0 secs,  3
samples)
Shell Scripts (1 concurrent)            864.1 lpm    (60.0 secs,  3
samples)
Shell Scripts (8 concurrent)            113.0 lpm    (60.0 secs,  3
samples)
Shell Scripts (16 concurrent)           57.0  lpm    (60.0 secs,  3
samples)
Arithmetic Test (type = short)          208121.1 lps (10.0 secs,  3
samples)
Arithmetic Test (type = int)            224953.0 lps (10.0 secs,  3
samples)
Arithmetic Test (type = long)           225021.0 lps (10.0 secs,  3
samples)
Arithmetic Test (type = float)          227323.4 lps (10.0 secs,  3
samples)
Arithmetic Test (type = double)         227399.2 lps (10.0 secs,  3
samples)
Arithoh                                 3997533.9lps (10.0 secs,  3
samples)
C Compiler Throughput                   409.0 lpm    (60.0 secs,  3
samples)
Dc: sqrt(2) to 99 decimal places        33603.1 lpm  (30.0 secs,  3
samples)
Recursion Test--Tower of Hanoi          28887.4 lps  (20.0 secs,  3
samples)


                     INDEX VALUES            
TEST                                      BASELINE     RESULT    INDEX

Dhrystone 2 using register variables      116700.0  1804898.5    154.7
Double-Precision Whetstone                55.0      476.9        86.7
Execl Throughput                          43.0      945.1        219.8
File Copy 1024 bufsize 2000 maxblocks     3960.0    66127.0      167.0
File Copy 256 bufsize 500 maxblocks       1655.0    31927.0      192.9
File Copy 4096 bufsize 8000 maxblocks     5800.0    88357.0      152.3
Pipe Throughput                           12440.0   452309.6     363.6
Process Creation                          126.0     4720.9       374.7
Shell Scripts (8 concurrent)              6.0       113.0        188.3
System Call Overhead                      15000.0   453721.4     302.5
 
=========
     FINAL SCORE                                                 201.8
------------------------------------------------------------------------
---
Regards
 
Sowmya Adiga
Project Engineer
Wipro Technologies
53/1,Hosur Road,Madivala
Bangalore-560 068,INDIA
Tel: +91-80-5502001 Extn.5086
sowmya.adiga@wipro.com


^ permalink raw reply

* [BENCHMARK]AIM benchmark result for kernel 2.5.52 with mm2 patch
From: Sowmya Adiga @ 2002-12-20  3:58 UTC (permalink / raw)
  To: linux-kernel

Hi,

Here are the AIM benchmark result for kernel 2.5.52 with mm2 patch.
Kernel 2.5.52 with mm2 patch when compared with kernel 2.5.52 showed
difference of performance in following tests:-
========================================================================
===
 Test Test     Elapsed     Iteration    Iteration        Operation
NumberName     Time (sec)    Count      Rate (loops/sec) Rate (ops/sec)
------------------------------------------------------------------------
----                                                   
1 System Memory Allocations/second
brk_test[2.5.52]   60.00   3365        56.08333         953416.67

brk_test[2.5.52mm2]60.00   3308        55.13333         937266.67

2 Sequential Disk Writes (K)/second
disk_wrt[2.5.52]   60.03   648         10.79460         55268.37
disk_wrt[2.5.52mm2]60.09   608         10.11816         51804.96

3 Disk Copies (K)/second
disk_cp[2.5.52]    60.09   517         8.60376          44051.26
disk_cp[2.5.52mm2] 60.04   490         8.16123          41785.48 

4 Dynamic Memory Operations/second
mem_rtns_1[2.5.52]   60.01  1617       26.94551         808365.27
mem_rtns_1[2.5.52mm2]60.01  1826       30.42826         912847.86
========================================================================
==
*There is no much significant difference in other test result.




------------------------------------------------------------------------
----              
                        kernel 2.5.52 with mm2 patch
------------------------------------------------------------------------
----

Machine's name                                    : access1
Machine's configuration                           : PIII/868MHZ/128MB
Number of seconds to run each test [2 to 1000]    : 60
Path to disk files                                : /tmp


------------------------------------------------------------------------
---
 Test Test     Elapsed     Iteration    Iteration        Operation
NumberName     Time (sec)    Count      Rate (loops/sec) Rate (ops/sec)
------------------------------------------------------------------------
----
1 add_double    60.02       716        11.92936         214728.42 
Thousand Double Precision Additions/second

2 add_float     60.00       1074       17.90000         214800.00 
Thousand Single Precision Additions/second

3 add_long      60.01       1768       29.46176         1767705.38
Thousand Long Integer Additions/second

4 add_int       60.02       1768       29.45685         1767410.86
Thousand Integer Additions/second

5 add_short     60.00       4419       73.65000         1767600.00
Thousand Short Integer Additions/second

6 creat-clo     60.03       2135       35.56555         35565.55 
File Creations and Closes/second

7 page_test     60.00       8659       144.31667        245338.33
System Allocations & Pages/second

8 brk_test      60.00       3308       55.13333         937266.67
System Memory Allocations/second

9 jmp_test      60.00       318157     5302.61667       5302616.67
Non-local gotos/second

10 signal_test  60.00       9828       163.80000        163800.00
Signal Traps/second

11 exec_test    60.03       2047       34.09962         170.50 
Program Loads/second

12 fork_test    60.01       1141       19.01350         1901.35
Task Creations/second

13 link_test    60.00       9817       163.61667        10307.85
Link/Unlink Pairs/second

14 disk_rr      60.02       474        7.89737          40434.52
Random Disk Reads (K)/second

15 disk_rw      60.08       369        6.14181          31446.07 
Random Disk Writes (K)/second

16 disk_rd      60.01       2819       46.97550         240514.58
Sequential Disk Reads (K)/second

17 disk_wrt     60.09       608        10.11816         51804.96
Sequential Disk Writes (K)/second

18 disk_cp      60.04       490        8.16123          41785.48 
Disk Copies (K)/second

19 sync_disk_rw 60.26       1          0.01659          42.48
Sync Random Disk Writes (K)/second

20 sync_disk_wrt 76.69      2          0.02608          66.76
Sync Sequential Disk Writes (K)/second

21 sync_disk_cp  76.71      2          0.02607          66.74 
Sync Disk Copies (K)/second

22 disk_src      60.00      10623      177.05000        13278.75 
Directory Searches/second

23 div_double    60.01      1322       22.02966         66088.99 
Thousand Double Precision Divides/second

24 div_float     60.01      1322       22.02966         66088.99
Thousand Single Precision Divides/second

25 div_long      60.03      1592       26.52007         23868.07 
Thousand Long Integer Divides/second

26 div_int       60.03      1592       26.52007         23868.07 
Thousand Integer Divides/second

27 div_short     60.02      1591       26.50783         23857.05 
Thousand Short Integer Divides/second

28 fun_cal       60.00      4362       72.70000         37222400.00
Function Calls (no arguments)/second

29 fun_cal1      60.01      10230      170.47159        87281453.09
Function Calls (1 argument)/second

30 fun_cal2      60.00      7970       132.83333        68010666.67 
Function Calls (2 arguments)/second

31 fun_cal15     60.02      2455       40.90303         20942352.55
Function Calls (15 arguments)/second

32 sieve         60.28      41         0.68016          3.40
Integer Sieves/second

33 mul_double    60.03      838        13.95969         167516.24
Thousand Double Precision Multiplies/second

34 mul_float     60.06      837        13.93606         167232.77
Thousand Single Precision Multiplies/second

35 mul_long      60.00      75693      1261.55000       302772.00
Thousand Long Integer Multiplies/second

36 mul_int       60.00      75999      1266.65000       303996.00
Thousand Integer Multiplies/second

37 mul_short     60.00      60533      1008.88333       302665.00
Thousand Short Integer Multiplies/second

38 num_rtns_1    60.00      32604       543.40000       54340.00 
Numeric Functions/second

39 new_raph      60.00      79903       1331.71667      266343.33 
Zeros Found/second

40 trig_rtns     60.03      2168        36.11528        361152.76
Trigonometric Functions/second

41 matrix_rtns   60.00      349550      5825.83333      582583.33 
Point Transformations/second

42 array_rtns    60.06      959         15.96737        319.35 
Linear Systems Solved/second

43 string_rtns   60.06      852         14.18581        1418.58
String Manipulations/second

44 mem_rtns_1    60.01      1826        30.42826        912847.86
Dynamic Memory Operations/second

45 mem_rtns_2    60.00      131042      2184.03333      218403.33 
Block Memory Operations/second

46 sort_rtns_1   60.02      2426        40.41986        404.20 
Sort Operations/second

47 misc_rtns_1   60.00      32127       535.45000       5354.50 
Auxiliary Loops/second

48 dir_rtns_1    60.01      13168       219.43009       2194300.95 
Directory Operations/second

49 shell_rtns_1  60.01       2400       39.99333        39.99 
Shell Scripts/second

50 shell_rtns_2  60.01       2403       40.04333        40.04
Shell Scripts/second

51 shell_rtns_3  60.01       2403       40.04333        40.04
Shell Scripts/second

52 series_1      60.00       1464228    24403.80000     2440380.00
Series Evaluations/second

53 shared_memory  60.00      163393     2723.21667      272321.67
Shared Memory Operations/second

54 tcp_test       60.00      10996      183.26667       16494.00 
TCP/IP Messages/second

55 udp_test       60.00      46736      778.93333       77893.33 
UDP/IP DataGrams/second

56 fifo_test      60.00      88065      1467.75000      146775.00
FIFO Messages/second

57 stream_pipe    60.00      69669      1161.15000      116115.00 
Stream Pipe Messages/second

58 dgram_pipe     60.00      65903      1098.38333      109838.33 
DataGram Pipe Messages/second

59 pipe_cpy       60.00      254365     4239.41667      423941.67
Pipe Messages/second

60 ram_copy       60.00      1496042    24934.03333     623849514.00
Memory to Memory Copy/second
------------------------------------------------------------------------
----
Regards
 
Sowmya Adiga
Project Engineer
Wipro Technologies
53/1,Hosur Road,Madivala
Bangalore-560 068,INDIA
Tel: +91-80-5502001 Extn.5086
sowmya.adiga@wipro.com
 
 


^ permalink raw reply

* Re: module-init-tools 0.9.5
From: Tomas Szepe @ 2002-12-20  3:51 UTC (permalink / raw)
  To: Rusty Russell; +Cc: lkml
In-Reply-To: <20021220003818.0D5622C32C@lists.samba.org>

> In message <20021219152942.GD26389@louise.pinerecords.com> you write:
> > $ uname -r
> > 2.4.20
> > 
> > [compile and install 2.5.52]
> > 
> > still in 2.4.20:
> > # depmod -V
> > module-init-tools 0.9.5
> > # depmod -ae -F /boot/System.map-2.5.52 2.5.52
> > #
> > 
> > [reboot into 2.5.52]
> > 
> > # modprobe pcnet32
> > FATAL: module pcnet32 not found.
> > # depmod -ae
> > # modprobe pcnet32
> > #
> > 
> > Hmm?
> 
> I can't reproduce that here (the two produce identical results with my
> config).  Can you send the contents of /lib/modules/2.5.52/modules.dep
> produced after each run?

Ooops.  I dropped this vmware machine in the meantime I'm afraid.  I'll
certainly let you know if I stumble upon the problem again, though.

-- 
Tomas Szepe <szepe@pinerecords.com>

^ permalink raw reply

* Re: Dell OEM Soundblaster Live 5.1 with different PCI ID
From: Jeff Ridenour @ 2002-12-20  3:38 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 2276 bytes --]


Just as an update, when I try to use aplay to play a sound, I get this 
error:

[root@beall-dell-01 sounds]# aplay phone.wav
Playing WAVE 'phone.wav' : Signed 16 bit Little Endian, Rate 44100 Hz,
Stereo
aplay: pcm_write:999: write error: Input/output error
[root@beall-dell-01 sounds]#


So i'm guessing there's still a problem with the emu10k1 driver and this 
dumb oem card?

jeff



On Thursday, December 19, 2002, at 11:02 AM, Jeffrey Kent Ridenour wrote:

Hi folks,

I was having the exact same problem, so I tried changing the source using
the diff file provided by Takashi, thanks a lot!  This did make progress
for me, since before, the i couldn't get the driver to modprobe.

The driver now loads and I can now give gmix/alsamixer to open (couldn't
before).  However, I'm still not getting sound.  when I turn the volume 
up
and mess with the sliders, I do hear changes in the signal level (i.e. 
the
noise floor goes up and down), but I haven't been able to get any sounds
or CD's to play.

Is this because the driver really doesn't work?  Or is there something
else that i haven't configured properly?  Any suggestions or response 
from
anyone would be much appreciated.  (I have a deadline I'm working with,
and I need to decide soon whether I should buy a different soundcard or
not)

jeff



At Thu, 19 Dec 2002 10:45:22 +0100,
elchhome@gmx.de wrote:
Hello Friends,
Dell ships since a month an OEM Soundblaster Live 5.1 (sb0200) with a
different PCI ID
for original sblive you got 1102:0002
the Dell version has 1102:0006
I got  no sound with the actual version of the sound driver.
Could anyone be so kind to incorporate this into the source code?

please try the attached patch.
this will add the entry as emu10k1 (sb live!).  it seems that the chip
is emu10k1, not audigy.
if it works, please let me know.  i'll commit it to cvs.


thanks,

Takashi




-------------------------------------------------------
This SF.NET email is sponsored by: Geek Gift Procrastinating?
Get the perfect geek gift now!  Before the Holidays pass you by.
T H I N K G E E K . C O M      http://www.thinkgeek.com/sf/
_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel


[-- Attachment #2: Type: text/enriched, Size: 3179 bytes --]


Just as an update, when I try to use aplay to play a sound, I get this
error:


<fixed>[root@beall-dell-01 sounds]# aplay phone.wav

Playing WAVE 'phone.wav' : Signed 16 bit Little Endian, Rate 44100 Hz,

Stereo

aplay: pcm_write:999: write error: Input/output error

[root@beall-dell-01 sounds]# 



So i'm guessing there's still a problem with the emu10k1 driver and
this dumb oem card?


jeff



</fixed>

On Thursday, December 19, 2002, at 11:02 AM, Jeffrey Kent Ridenour
wrote:


<color><param>0000,0000,DEDE</param>Hi folks,


I was having the exact same problem, so I tried changing the source
using

the diff file provided by Takashi, thanks a lot!  This did make
progress

for me, since before, the i couldn't get the driver to modprobe. 


The driver now loads and I can now give gmix/alsamixer to open
(couldn't

before).  However, I'm still not getting sound.  when I turn the
volume up

and mess with the sliders, I do hear changes in the signal level (i.e.
the

noise floor goes up and down), but I haven't been able to get any
sounds

or CD's to play.


Is this because the driver really doesn't work?  Or is there something

else that i haven't configured properly?  Any suggestions or response
from

anyone would be much appreciated.  (I have a deadline I'm working with,

and I need to decide soon whether I should buy a different soundcard or

not)


jeff




</color><color><param>0000,6363,1212</param>At Thu, 19 Dec 2002
10:45:22 +0100,

elchhome@gmx.de wrote:

</color><color><param>0000,0000,DEDE</param>Hello Friends,

Dell ships since a month an OEM Soundblaster Live 5.1 (sb0200) with a 

</color><color><param>5454,0000,0000</param>different PCI ID

</color><color><param>0000,0000,DEDE</param>for original sblive you
got 1102:0002

</color><color><param>5454,0000,0000</param>the Dell version has
1102:0006

</color><color><param>0000,0000,DEDE</param>I got  no sound with the
actual version of the sound driver.

</color><color><param>5454,0000,0000</param>Could anyone be so kind to
incorporate this into the source code?

</color><color><param>0000,6363,1212</param>

please try the attached patch.

this will add the entry as emu10k1 (sb live!).  it seems that the chip

is emu10k1, not audigy.

if it works, please let me know.  i'll commit it to cvs.

</color><color><param>0000,0000,DEDE</param>


</color><color><param>0000,6363,1212</param>thanks,

</color><color><param>0000,0000,DEDE</param>

</color><color><param>0000,6363,1212</param>Takashi

</color><color><param>0000,0000,DEDE</param>




-------------------------------------------------------

This SF.NET email is sponsored by: Geek Gift Procrastinating?

Get the perfect geek gift now!  Before the Holidays pass you by.

T H I N K G E E K . C O M     
</color><underline><color><param>1A1A,1A1A,FFFF</param>http://www.thinkgeek.com/sf/</color></underline><color><param>0000,0000,DEDE</param>

_______________________________________________

Alsa-devel mailing list

Alsa-devel@lists.sourceforge.net

</color><underline><color><param>1A1A,1A1A,FFFF</param>https://lists.sourceforge.net/lists/listinfo/alsa-devel</color></underline><color><param>0000,0000,DEDE</param>


</color>

^ permalink raw reply

* [help] exec_usermodehelper() then content of CURRENT is destroyed
From: ?? @ 2002-12-20  3:37 UTC (permalink / raw)
  To: Ralf Baechle, linux-mips; +Cc: cms
In-Reply-To: <20021205132358.A5634@linux-mips.org>

dear all,

1)in our 2.4.18 mips kernel , when we call  exec_usermodehelper() (in
kernel/kmod.c)
the content of CURRENT is destroyed during [page_fault handler loading pages
from storage-device to ram]

which kind of error may cause this problem?
any hint/idea?

2)btw, in some mips linux port,
[syscall] is done by [scall_o32.S]
when [handle_sys] is done,
it will return by [o32_ret_from_sys_call],
[o32_ret_from_sys_call] will do [reschedule] and [signal],
but the question is here it doesn't check whether [syscall] is from
User-space or Kernel-space
if we use [syscall] in kernel-space, and do [signal] after [syscall] return,
won't it cause problem? is this bug of linux code?

thanks alot in advanced!

^ permalink raw reply

* [help] exec_usermodehelper() then content of CURRENT is destroyed
From: ?? @ 2002-12-20  3:37 UTC (permalink / raw)
  To: Ralf Baechle, linux-mips; +Cc: cms
In-Reply-To: <20021205132358.A5634@linux-mips.org>

dear all,

1)in our 2.4.18 mips kernel , when we call  exec_usermodehelper() (in
kernel/kmod.c)
the content of CURRENT is destroyed during [page_fault handler loading pages
from storage-device to ram]

which kind of error may cause this problem?
any hint/idea?

2)btw, in some mips linux port,
[syscall] is done by [scall_o32.S]
when [handle_sys] is done,
it will return by [o32_ret_from_sys_call],
[o32_ret_from_sys_call] will do [reschedule] and [signal],
but the question is here it doesn't check whether [syscall] is from
User-space or Kernel-space
if we use [syscall] in kernel-space, and do [signal] after [syscall] return,
won't it cause problem? is this bug of linux code?

thanks alot in advanced!

^ permalink raw reply

* [PATCH] 2.4.20 ide for 2.4.21-pre2
From: Tomas Szepe @ 2002-12-20  3:43 UTC (permalink / raw)
  To: lkml; +Cc: Jeff Chua

For those who have problems with the shiny new IDE in 2.4.21-pre,
here's a patch that reverts all IDE code to its 2.4.20 state.

The only reason I went through this diff charade is I need an
all-fine-running's PDC driver.  To be applied on top of 2.4.21-pre2.

http://www.geocities.com/szepe_t/2.4.21-pre2-2420ide-1.gz
[588K]

-- 
Tomas Szepe <szepe@pinerecords.com>

^ permalink raw reply

* Re: Dedicated kernel bug database
From: Martin J. Bligh @ 2002-12-20  3:40 UTC (permalink / raw)
  To: John Bradford, Dave Jones
  Cc: linux-kernel, alan, lm, lm, torvalds, vonbrand, akpm
In-Reply-To: <200212192042.gBJKgsTl002677@darkstar.example.net>

> I've got loads of ideas about how we could build a better bug database

Go ahead, knock yourself out. Come back when you're done.

> - for example, we have categories at the moment in Bugzilla.  Why?  We
> already have a MAINTAINERS file, so say somebody looks up the relevant
> maintainer in that list, finds them, then goes to enter a bug in
> Bugzilla.  Now they have to assign it to a category, and different
> people may well assign the same bug to different categories -
> immediately making duplicate detection more difficult.

Have you actually looked at the maintainers file? It's a twisted mess
of outdated information, in no well formated order. The category list
in Bugzilla was an attempt to bring some sanity to the structure,
though I won't claim it's perfect. We really need a 3-level tree, but
that's a fair amount of work to code.

M.




^ permalink raw reply

* How to  load these modules?
From: bobo @ 2002-12-20  3:27 UTC (permalink / raw)
  To: netfilter, netfilter; +Cc: bobowd, bobowd

     Hello  all:

           While I am studying iptables,I read such contents from a tutorial as bellow:

  "the rc.firewall.txt neede the following options to be compiled to kernel or as modules..

  .CONFIG_PACKET
  .CONFIG_NETFILTER
  .CONFIG_IP_NF_CONNTRACK
..........

   I find some moudles of REDHAT 7.2 in /lib/modules/2.4.7-10/kernel/net/ipv4/netfilter,
 but the modules'name are not the same as the above.  There are about 20 modules in the directory.

  Why?

  How could I do?   How could I get these modules?



^ permalink raw reply

* How to  load these modules?
From: bobo @ 2002-12-20  3:27 UTC (permalink / raw)
  To: netfilter-devel; +Cc: bobowd

     Hello  all:

           While I am studying iptables,I read such contents from a tutorial as bellow:

  "the rc.firewall.txt neede the following options to be compiled to kernel or as modules..

  .CONFIG_PACKET
  .CONFIG_NETFILTER
  .CONFIG_IP_NF_CONNTRACK
..........

   I find some moudles of REDHAT 7.2 in /lib/modules/2.4.7-10/kernel/net/ipv4/netfilter,
 but the modules'name are not the same as the above.  There are about 20 modules in the directory.

  Why?

  How could I do?   How could I get these modules?

^ permalink raw reply

* Re: Dedicated kernel bug database
From: Martin J. Bligh @ 2002-12-20  3:35 UTC (permalink / raw)
  To: Dave Jones, Jon Tollefson; +Cc: linux-kernel
In-Reply-To: <20021219184958.GA6837@suse.de>

> It's an annoyance to me that the current bugzilla we use can only
> do 1 way email. Ie, I receive email when things change, but I can't
> reply to that mail and have my comments auto-added.
> Other bugzillas can do this, so I think either some switch needs
> to be enabled, or theres some extension not present.
> (I'm a complete bugzilla weenie, and no nothing about how its set up).

I think it's some extensions that can be used. Jon is the person
who knows the Bugzilla tool itself ... Jon, any comments on this?

M.


^ permalink raw reply

* How to  load these modules?
From: bobo @ 2002-12-20  3:22 UTC (permalink / raw)
  To: netfilter@lists.netfilter.org; +Cc: bobowd@sohu.com

     Hello  all:

           While I am studying iptables,I read such contents from a tutorial as bellow:

  "the rc.firewall.txt neede the following options to be compiled to kernel or as modules..

  .CONFIG_PACKET
  .CONFIG_NETFILTER
  .CONFIG_IP_NF_CONNTRACK
..........

   I find some moudles of REDHAT 7.2 in /lib/modules/2.4.7-10/kernel/net/ipv4/netfilter,
 but the modules'name are not the same as the above.  There are about 20 modules in the directory.

  Why?

  How could I do?   How could I get these modules?



^ permalink raw reply

* Re: Dedicated kernel bug database
From: Martin J. Bligh @ 2002-12-20  3:26 UTC (permalink / raw)
  To: Brian Jackson, John Bradford; +Cc: linux-kernel
In-Reply-To: <20021219173329.32340.qmail@escalade.vistahp.com>

> I would just like to second what somebody said about bugzilla yesterday,
> that it is hard to search for bugs that have already been entered. Just
> something to think about.   --Brian Jackson

Give me an example ... what are you trying to search for?

M.


^ permalink raw reply

* Re: Dedicated kernel bug database
From: Martin J. Bligh @ 2002-12-20  3:21 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: Hanna Linder, linux-kernel
In-Reply-To: <Pine.LNX.4.33L2.0212191858150.32456-100000@dragon.pdx.osdl.net>

>| >> There are a bunch of categories that aren't really "owned" as such,
>| >> and default to khoa or myself. Those are really good candidates to
>| >> steal ... they'll be owned by bugme-janitors soon to make this more
>| >> obvious ...
>| >
>| > OK. Which categories are not owned? Anything with you or khoa as
>| > owners?
>|
>| More or less, yes. There are a couple of categories I really own, eg
>| NUMA/discontigmem, and I'll probably look after ia32 specific bugs
>| unless Linus wants his category back ;-)
>|
>| Will switch to bugme-janitors in a few days, then will all be much more
>| obvious
>
> What does this last sentence mean?

Instead of categories that don't have a "real" owner defaulting back to me
or Khoa, they'll go to bugme-janitors, which is an alias. That way we'll
have better coverage, and it'll be obvious which things aren't really
owned.

M


^ permalink raw reply

* How to  load these modules?
From: bobo @ 2002-12-20  3:10 UTC (permalink / raw)
  To: netfilter-devel@lists.netfilter.org; +Cc: bobowd@sohu.com

     Hello  all:

           While I am studying iptables,I read such contents from a tutorial as bellow:

  "the rc.firewall.txt neede the following options to be compiled to kernel or as modules..

  .CONFIG_PACKET
  .CONFIG_NETFILTER
  .CONFIG_IP_NF_CONNTRACK
..........

   I find some moudles of REDHAT 7.2 in /lib/modules/2.4.7-10/kernel/net/ipv4/netfilter,
 but the modules'name are not the same as the above.  There are about 20 modules in the directory.

  Why?

  How could I do?   How could I get these modules?

^ permalink raw reply

* firewall failover / cluster
From: Hauser Marcel @ 2002-12-20  3:06 UTC (permalink / raw)
  To: netfilter
In-Reply-To: <Pine.LNX.4.44.0212192006170.6773-100000@laptop1.agatha>

hi all

What are you guys using in order to provide a fault toleranced iptables 
firewall (master / slave ?)

Cheers Marcel




^ permalink raw reply

* Re: Dedicated kernel bug database
From: Randy.Dunlap @ 2002-12-20  2:58 UTC (permalink / raw)
  To: Martin J. Bligh; +Cc: Hanna Linder, linux-kernel
In-Reply-To: <56740000.1040350938@flay>

On Thu, 19 Dec 2002, Martin J. Bligh wrote:

| >> There are a bunch of categories that aren't really "owned" as such,
| >> and default to khoa or myself. Those are really good candidates to
| >> steal ... they'll be owned by bugme-janitors soon to make this more
| >> obvious ...
| >
| > OK. Which categories are not owned? Anything with you or khoa as owners?
|
| More or less, yes. There are a couple of categories I really own, eg
| NUMA/discontigmem, and I'll probably look after ia32 specific bugs
| unless Linus wants his category back ;-)
|
| Will switch to bugme-janitors in a few days, then will all be much more
| obvious

What does this last sentence mean?

-- 
~Randy


^ permalink raw reply

* Re: [PATCH]: for poor sools with old I2 & 64 bits kernel
From: Ralf Baechle @ 2002-12-20  2:44 UTC (permalink / raw)
  To: Juan Quintela; +Cc: mipslist
In-Reply-To: <m2el8dixmr.fsf@demo.mitica>

On Thu, Dec 19, 2002 at 09:04:12PM +0100, Juan Quintela wrote:

>         this small patch made possible to compile a 64bit kernel for
>         people that have old proms that only accept ecoff.  As usual
>         stolen from the 32 bits version.
> 
>         The easiest way is creating the file in arch/mips/boot,
>         otherwise we need to copy elf2ecoff.c to mips64.

Applied slightly modified.  I removed two other unused targets.

  Ralf

^ permalink raw reply


This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.