public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.4.7-ac4 disk thrashing
@ 2001-08-04 15:38 Tom Vier
  2001-08-04 23:04 ` Matthew Gardiner
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Vier @ 2001-08-04 15:38 UTC (permalink / raw)
  To: linux-kernel

switching from 2.4.7-ac3 to -ac4, disk access seems to be much more
synchronis. running a ./configure script causes all kinds of trashing, as
does installing .debs. i'm using reiserfs on top of software raid 0 on an
alpha.

-- 
Tom Vier <tmv5@home.com>
DSA Key id 0x27371A2C

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.7-ac4 disk thrashing
  2001-08-04 15:38 2.4.7-ac4 disk thrashing Tom Vier
@ 2001-08-04 23:04 ` Matthew Gardiner
  2001-08-05  0:55   ` Tom Vier
  2001-08-05  1:09   ` ip_conntrack bigger, better and yellow ;) !!! Mircea Ciocan
  0 siblings, 2 replies; 5+ messages in thread
From: Matthew Gardiner @ 2001-08-04 23:04 UTC (permalink / raw)
  To: Tom Vier; +Cc: linux-kernel

Tom Vier wrote:

>switching from 2.4.7-ac3 to -ac4, disk access seems to be much more
>synchronis. running a ./configure script causes all kinds of trashing, as
>does installing .debs. i'm using reiserfs on top of software raid 0 on an
>alpha.
>
Apparently, in ac5 (which I am running), there was a bug on non-x86 
cpu's using reiserfs. Download and install the new patch and try.

Matthew Gardiner



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.7-ac4 disk thrashing
  2001-08-04 23:04 ` Matthew Gardiner
@ 2001-08-05  0:55   ` Tom Vier
  2001-08-05  1:09   ` ip_conntrack bigger, better and yellow ;) !!! Mircea Ciocan
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Vier @ 2001-08-05  0:55 UTC (permalink / raw)
  To: Matthew Gardiner; +Cc: linux-kernel

On Sun, Aug 05, 2001 at 11:04:59AM +1200, Matthew Gardiner wrote:
> Tom Vier wrote:
> >switching from 2.4.7-ac3 to -ac4, disk access seems to be much more
> >synchronis. running a ./configure script causes all kinds of trashing, as
> >does installing .debs. i'm using reiserfs on top of software raid 0 on an
> >alpha.

> Apparently, in ac5 (which I am running), there was a bug on non-x86 
> cpu's using reiserfs. Download and install the new patch and try.

that's just a signedness fix. i've tried ac5 and it has the same problem as
ac4.

-- 
Tom Vier <tmv5@home.com>
DSA Key id 0x27371A2C

^ permalink raw reply	[flat|nested] 5+ messages in thread

* ip_conntrack bigger, better and yellow ;) !!!
  2001-08-04 23:04 ` Matthew Gardiner
  2001-08-05  0:55   ` Tom Vier
@ 2001-08-05  1:09   ` Mircea Ciocan
  2001-08-05  3:19     ` Sven Koch
  1 sibling, 1 reply; 5+ messages in thread
From: Mircea Ciocan @ 2001-08-05  1:09 UTC (permalink / raw)
  To: linux-kernel

	Ok, the pressure for a netflow like stuff in kernel is big, examining
the the netflow structure at:

 http://sgi.rdscv.ro/~ionuts/netflowv5.h

it seem that ip_conntrak has allmost everything that is needed to
emulate Cisco netflow EXCEPT ( a big except :) the information about
data bytes/packets that flow via that connexion and the question is how
could be added with minimum damages, for example at the end of the
existing ip_conntrack structure, so a nice little userspace daemon could
parse the /proc/net/ip_conntrack and generate the damned netflow packets
that everybody seem to want now :( !!!
	Me and a couple of friends are ready to cut our teeth in kernel
programing and have available some machines to crash test and debug the
damned thing and while not aiming for inclusion in stable series maybe
it will mature enough for inclusion in 2.6 series or it will remain a
forever unofficial pach :).
	While we think that we know enough C and we can dig throu kernel
sources we need some mentoring, kickstart and stuff from you network
gurus to tell us where is the best this code to be inserted ( is your
stack after all ;) and some best design ideeas.
	We promise to do the grunt work and keep the "bothering level" at a
minimum :).
	So Alexey, DaveM, Alan and the other network gurus, please help us to
put our name somewhere in the CREDITS file ;).

		Thank you,

		Mircea C.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ip_conntrack bigger, better and yellow ;) !!!
  2001-08-05  1:09   ` ip_conntrack bigger, better and yellow ;) !!! Mircea Ciocan
@ 2001-08-05  3:19     ` Sven Koch
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Koch @ 2001-08-05  3:19 UTC (permalink / raw)
  To: Mircea Ciocan; +Cc: linux-kernel

On Sun, 5 Aug 2001, Mircea Ciocan wrote:

> 	Ok, the pressure for a netflow like stuff in kernel is big, examining
> the the netflow structure at:
>
>  http://sgi.rdscv.ro/~ionuts/netflowv5.h
>
> it seem that ip_conntrak has allmost everything that is needed to
> emulate Cisco netflow EXCEPT ( a big except :) the information about
> data bytes/packets that flow via that connexion and the question is how
> could be added with minimum damages, for example at the end of the
> existing ip_conntrack structure, so a nice little userspace daemon could
> parse the /proc/net/ip_conntrack and generate the damned netflow packets
> that everybody seem to want now :( !!!

I think you should get in contact with the netfilter-coreteam about this
and subscribe to the netfilter-devel-mailinglist - see
http://netfilter.samba.org/ for subscribe-information.

c'ya
sven

-- 

The Internet treats censorship as a routing problem, and routes around it.
(John Gilmore on http://www.cygnus.com/~gnu/)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-08-05  3:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-04 15:38 2.4.7-ac4 disk thrashing Tom Vier
2001-08-04 23:04 ` Matthew Gardiner
2001-08-05  0:55   ` Tom Vier
2001-08-05  1:09   ` ip_conntrack bigger, better and yellow ;) !!! Mircea Ciocan
2001-08-05  3:19     ` Sven Koch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox