Daniel O'Connor | 1 Jun 2004 07:35
Picon
Favicon

Re: uaudio patch for accepts only fixed sampling rate


On Tue, 1 Jun 2004 02:50, Mathew Kanner wrote:
> 	I'm also working on USB audio.  It just doesn't work for me
> and I'm getting a ton locking issues.  At the moment, I've merged most
> of the netbsd uaudio stuff.  My question to you is, does uaudio work
> in fbsd 5+ for you?

Not that I am doing development on it, but "me too" :)

I have an M-Audio USB audio device which used to work OK in stable, but 
doesn't in -current :(

I am cvsup'ing to get the latest stuff and I will try it out and see how it 
goes.

--

-- 
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
  -- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C
Martes G Wigglesworth | 2 Jun 2004 04:59
Picon
Favicon

Good Information about ipfw

Is there a good, definitive, source of information for implementing ipfw
firewall rules.  I had to research for almost a week just to find out
how to do bandwidth limiting with freebsd.  (3days just to find out if
freebsd does this, and then another two just to find out what dummynet
is, and then I found out that it was in the man page.)  Where is the
list of all these obscure programs, and features, that are not a
unreadable as most man pages.  

I would also like to know what the point of most manpages are.  90
percent of them just list abitrary commands, as though you are supposed
to know how to use the program in the first place.  There are almost
never any useful informatin about implementing the program that the
manpage is supposed to explain, but does not. 

I have not been able to locate any book on the one firewall, that seems
to be at the heart of any good Freebsd firewall setup. 

Please help this wayward soul.

Thanks fellow bsders.

_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Martes G Wigglesworth | 2 Jun 2004 04:59
Picon
Favicon

Good Information about ipfw

Is there a good, definitive, source of information for implementing ipfw firewall rules. I am familiar
with the man pages, howerver, a list of arbitrary functionality, without any clue as to how to actually
empliment them is of no use to me.
I am in Mozul, Iraq, and I have limited time on the Internet, and far less resources than I did before I got
activated to come over here. 
I would also like to know what the point of most man pages are.  90 percent of them just list arbitrary
commands, as though you are supposed
to know how to use the program in the first place.  There are almost never any useful information about
implementing the program that the manpage is supposed to explain, but does not. 

I have not been able to locate any book on the one firewall, that seems
to be at the heart of any good Freebsd firewall setup. 

Please help this wayward soul.

Thanks fellow BSDers.

System: HP Pavilion ze5700 w/ Inetel Celeron 2.8ghz; 256MB ram; 30gig hdd 
OS:	FreeBSD 5.2.1-RELEASE

_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Anthony Schneider | 1 Jun 2004 22:21

Re: Darwin cmd import?

On Fri, May 28, 2004 at 12:38:10PM +0200, Cyrille Lefevre wrote:
> "Vulpes Velox" <kitbsdlist2 <at> HotPOP.com> wrote:
> > On Fri, 28 May 2004 04:07:32 +0200
> > "Cyrille Lefevre" <clefevre-lists <at> 9online.fr> wrote:
... 
> http://www.opensource.apple.com/darwinsource/10.3.4/bootstrap_cmds-44/
> http://www.opensource.apple.com/darwinsource/10.3.4/system_cmds-279.6/
> 
> if the above link need to be registered,
> let's try google "darwin +decomment" :)
> 
> > If decomment does what it sounds like, then it can be solved using
> > grep... iirc it is possible to tell it to kick out all lines that do
> > not match a patern...
> 
> thank you, but decomment isn't just a grep oneliner :P
> 
> relpath - calculate the relative path between two path.
> decomment - get rid of C/C++ comments.
> sadc/sar - system activity reporter (ac like, but more powerfull).

decomment, assuming it simply strips c/c++ comments from source files,
could be implemented with a few lines of a lex spec.

-Anthony.

> Cyrille Lefevre.
> -- 
> home: mailto:cyrille.lefevre <at> laposte.net
> _______________________________________________
(Continue reading)

Christopher Weimann | 1 Jun 2004 22:33

Re: Good Information about ipfw

On 06/01/2004-11:59PM, Martes G Wigglesworth wrote:
> Is there a good, definitive, source of information for implementing ipfw
> firewall rules.  I had to research for almost a week just to find out
> how to do bandwidth limiting with freebsd.  (3days just to find out if
> freebsd does this, and then another two just to find out what dummynet
> is, and then I found out that it was in the man page.)  Where is the
> list of all these obscure programs, and features, that are not a
> unreadable as most man pages.  
> 

Where did you look?  I just spent about 2 minutes and found question
12.22 in the FreeBSD FAQ "Where can I get a bandwidth management tool?"

http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/networking.html#BANDWIDTH-MGR-TOOL

> I would also like to know what the point of most manpages are.  90
> percent of them just list abitrary commands, as though you are supposed
> to know how to use the program in the first place.  There are almost
> never any useful informatin about implementing the program that the
> manpage is supposed to explain, but does not. 
> 

Man pages typically references not tutorials. They list ALL the command
line options for the programs they document not arbitrary ones.

> I have not been able to locate any book on the one firewall, that seems
> to be at the heart of any good Freebsd firewall setup. 
> 

Try 'man firewall'.
(Continue reading)

Christian S.J. Peron | 2 Jun 2004 06:35
Picon
Favicon

ipfw cached ucred patch

All,

Currently, when you have any rules which contain UID/GID
constraints, ipfw will lock the pcb hash and do a lookup
to find the pcb associated with that packet -- 
One for each constraint.

I have written a patch in attempt to minimize the impact
of PCB related lookups for these type of firewall rules.

This patch will have the following effects on firewalls which
contain UID/GID constraints:

 o Greatly reduce the locking contention associated
   with PCB lookups.

 o Increase the performance of firewall in general by making
   PCB lookups O(1) rather than O(n) (where n represents
   number of UID/GID constraints in the ruleset)

It would be greatly appriciated if people who are running ipfw
rules sets containing UID/GID constraints tested this patch
and reported any success or failures.

The patch can be downloaded from:

http://people.freebsd.org/~csjp/ip_fw2_cached_ucred.patch

NOTE:

(Continue reading)

Andre Oppermann | 2 Jun 2004 11:26
Picon
Favicon

Re: ipfw cached ucred patch

Christian S.J. Peron wrote:
> All,
> 
> Currently, when you have any rules which contain UID/GID
> constraints, ipfw will lock the pcb hash and do a lookup
> to find the pcb associated with that packet -- 
> One for each constraint.
> 
> I have written a patch in attempt to minimize the impact
> of PCB related lookups for these type of firewall rules.
> 
> This patch will have the following effects on firewalls which
> contain UID/GID constraints:
> 
>  o Greatly reduce the locking contention associated
>    with PCB lookups.
> 
>  o Increase the performance of firewall in general by making
>    PCB lookups O(1) rather than O(n) (where n represents
>    number of UID/GID constraints in the ruleset)
> 
> It would be greatly appriciated if people who are running ipfw
> rules sets containing UID/GID constraints tested this patch
> and reported any success or failures.
> 
> The patch can be downloaded from:
> 
> http://people.freebsd.org/~csjp/ip_fw2_cached_ucred.patch

You can optimize it even further by directly copying the uid/gid
(Continue reading)

Gleb Smirnoff | 2 Jun 2004 11:49
Picon

Re: [HEADS-UP] mbuma is in the tree

  Bosko,

On Mon, May 31, 2004 at 02:51:01PM -0700, Bosko Milekic wrote:
B> mbuma is an Mbuf & Cluster allocator built on top of a number of
B> extensions to the UMA framework, all included herein.

  are you going to convert mbuf tag allocator to UMA? Now
tags are allocated with malloc(). AFAIK, tags are used heavily in pf,
and forthcoming ALTQ. Moving to UMA should affect their performance
positively.

--

-- 
Totus tuus, Glebius.
GLEBIUS-RIPN GLEB-RIPE
_______________________________________________
freebsd-current <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe <at> freebsd.org"

W. D. | 1 Jun 2004 22:09
Favicon

Re: Good Information about ipfw

At 21:59 6/1/2004, Martes G Wigglesworth, wrote:
>Is there a good, definitive, source of information for implementing ipfw 
>firewall rules. I am familiar with the man pages, howerver, a list of 
>arbitrary functionality, without any clue as to how to actually empliment 
>them is of no use to me.
>I am in Mozul, Iraq, and I have limited time on the Internet, and far less 
>resources than I did before I got activated to come over here. 
>I would also like to know what the point of most man pages are.  90 percent 
>of them just list arbitrary commands, as though you are supposed
>to know how to use the program in the first place.  There are almost never 
>any useful information about implementing the program that the manpage is 
>supposed to explain, but does not. 
>
>I have not been able to locate any book on the one firewall, that seems
>to be at the heart of any good Freebsd firewall setup. 
>
>Please help this wayward soul.
>
>Thanks fellow BSDers.
>
>System: HP Pavilion ze5700 w/ Inetel Celeron 2.8ghz; 256MB ram; 30gig hdd 
>OS:	FreeBSD 5.2.1-RELEASE

Here's some info below.  Perhaps once you figure it all out, you
could write up a "cheatsheet" to help others.

http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/firewalls.html
http://lists.freebsd.org/pipermail/freebsd-ipfw/
http://marc.theaimsgroup.com/?l=freebsd-ipfw&r=1&w=2
http://marc.theaimsgroup.com/?l=freebsd-ipfw&w=2&r=1&s=newbie&q=b
(Continue reading)

Aldinson C. Esto | 2 Jun 2004 05:42
Picon
Picon

ifconfig.c developer manual

Hello Everyone,

I know most of you here already have extreme knowledge about freeBSD's
ins and outs.
I just want to ask specifically regarding FreeBSD's ifconfig.c's
functions and what does 
each function do.

No one can give me a developer's manual for such and I really need
someone to interpret 
each function for me.

Any help would be very much appreciated.

Thank you and best regards to one and all.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.693 / Virus Database: 454 - Release Date: 5/31/2004

_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"


Gmane