Re: Collecting System Statistics Programatically

2001-07-28 Thread Jim Bryant
Tabor Kelly wrote: I have found how to collect limited system statistics with sysctlbyname(), but I need to know how to do more. In specific I need to know how much memory is being used, and what percentage of processor cycles are being used. Any help is greatly appreciated, Thank You.

old business: NetWorker's nsrexecd crashing on -current

2001-07-28 Thread Matthew Jacob
Somebody tracked this down they write: + I found the crash bug on freebsd, but it is actually affecting every + platform; freebsd just happens to use strlen() in it's strdup() + implementation. FYI To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-hackers in

Re: natd passes inconsistent addresses to ipfw?

2001-07-28 Thread mikescott
On 27 Jul 2001, at 19:49, Daniel C. Sobral wrote: [EMAIL PROTECTED] wrote: With the following ipfw config fragment, Which happens not to include the rule that is denying your packets... Untrue -- it's the deny log tcp from any to any established in the fragment I gave (# 00600 in the

INCREDIBLE .. WORLDS NO.1 !!

2001-07-28 Thread WORLD1-WEB
Ladies Gentlemen, Are you ready to the experience of a lifetime ? As affiliates of the CIL group, we offer you to PLUGIN to the largest SEX-SERVER on the WEB, in order to get more than 3000 MegaBytes of the best and most sensational SEX on the entire Web! Why on earth do you think that

INCREDIBLE .. WORLDS NO.1 !!

2001-07-28 Thread WORLD1-WEB
Ladies Gentlemen, Are you ready to the experience of a lifetime ? As affiliates of the CIL group, we offer you to PLUGIN to the largest SEX-SERVER on the WEB, in order to get more than 3000 MegaBytes of the best and most sensational SEX on the entire Web! Why on earth do you think that

Re: Wanted: swapped backed disk on a diskless machine

2001-07-28 Thread Dima Dorfman
David Gilbert [EMAIL PROTECTED] writes: Dima == Dima Dorfman [EMAIL PROTECTED] writes: Dima Only the `malloc' md type (as much as the name suggests Dima otherwise, it can be configured not to use malloc as a backing Dima store) has the limits I think you're referring to. Its `swap' Dima

Re: perhaps one of phk's intern projects?

2001-07-28 Thread Peter Pentchev
On Fri, Jul 27, 2001 at 10:58:55AM -0400, Louis A. Mamakos wrote: Matthew Emmerton([EMAIL PROTECTED])@2001.07.26 16:50:52 +: On Thu, 26 Jul 2001, Matthew Jacob wrote: It'd be nice if one could pass a time specification to at in the form of next reboot. -matt

Re: natd passes inconsistent addresses to ipfw?

2001-07-28 Thread Richard Seaman, Jr.
Whoops. Meant to cc this to the list too. -- Richard Seaman, Jr.email:[EMAIL PROTECTED] 5182 N. Maple Lane phone:262-367-5450 Nashotah WI 53058fax:262-367-5852 On Sat, Jul 28, 2001 at 12:19:01PM +0100, [EMAIL PROTECTED] wrote: I'm worried about the

Re: custom release / custom install.cfg

2001-07-28 Thread Peter Pentchev
On Fri, Jul 27, 2001 at 03:45:02PM -0500, crg wrote: hackers: I built my own custom release and created a custom install.cfg file. The file is good because I tested with a FreeBSD 4.3Release. And it partitions my disk and installs the a custom bin distro. Now for my custom release, I

Re: cluster size

2001-07-28 Thread Bosko Milekic
On Fri, Jul 27, 2001 at 08:23:37PM -0400, Zhihui Zhang wrote: I thought doing a memory free is always safe in an interrupt context. Now it seems doing an allocation of memory is safe too. Does MCLGET() call vm_page_alloc() or malloc() eventually? If so, it might block. It never

Someone knowledgeable with ATAPI CD stuff...

2001-07-28 Thread David Leimbach
I am not subscribed to this list so I would appreciate it if you could CC me in your responses. I am trying to write some user code that will enable me to select one of the four slots on my ATAPI cd changer. I have noticed there is no explicit IOCTL for this function but that the the

Re: Someone knowledgeable with ATAPI CD stuff...

2001-07-28 Thread Søren Schmidt
It seems David Leimbach wrote: I am trying to write some user code that will enable me to select one of the four slots on my ATAPI cd changer. Why do you want that ? As it is now the driver autoselects the slot that has access to it, that is you can mount all four CD's in a changer an

Re: Fwd: Sun Grid Engine 5.2.3 Available. Now Open Source

2001-07-28 Thread Ron Chen
It's weekend, it's time for hacking. I downloaded the SGE 5.3 source code. Played with it for a while, the 50+MB of source does have some goodies, it is not as simple as NQS: 1. Master fail-over: you can set up several shadow masters in one cluster. When the qmaster fails, one of the shadow

Re: inet_aton

2001-07-28 Thread Mike Smith
I want to use the function inet_aton() in the kernel code. However, I = found no kernel equivalent of this function int the freebsd sources. I = could find inet_ntoa(), but not inet_aton(). Is it named by some other = name or how can I locate it? If you are trying to parse an ascii internet

Re: cluster size

2001-07-28 Thread Terry Lambert
Zhihui Zhang wrote: I thought doing a memory free is always safe in an interrupt context. Now it seems doing an allocation of memory is safe too. Does MCLGET() call vm_page_alloc() or malloc() eventually? If so, it might block. The mbuf allocator uses the zone allocator. The reason this

Re: inet_aton

2001-07-28 Thread Terry Lambert
Anjali Kulkarni wrote: Hi, I want to use the function inet_aton() in the kernel code. However, I found no kernel equivalent of this function int the freebsd sources. I could find inet_ntoa(), but not inet_aton(). Is it named by some other name or how can I locate it? The kernel is not

FreeBSD Monthly Development Status Report -- Request For Submissions

2001-07-28 Thread Robert Watson
It's that time again! The last FreeBSD Development Status report was over a month ago, and given its success, we'll try it again this month. As with the previous edition, I'm interested in seeing about one paragraph per on-going project (or for major projects, a paragraph for each major

Re: cluster size

2001-07-28 Thread Bosko Milekic
On Sat, Jul 28, 2001 at 01:44:25PM -0700, Terry Lambert wrote: Zhihui Zhang wrote: I thought doing a memory free is always safe in an interrupt context. Now it seems doing an allocation of memory is safe too. Does MCLGET() call vm_page_alloc() or malloc() eventually? If so, it might

Re: inet_aton

2001-07-28 Thread Julian Elischer
Mike Smith wrote: I want to use the function inet_aton() in the kernel code. However, I = found no kernel equivalent of this function int the freebsd sources. I = could find inet_ntoa(), but not inet_aton(). Is it named by some other = name or how can I locate it? If you are trying