Re: MODULES_OVERRIDE magic needed

2008-03-31 Thread Danny Braniss
> The following works fine here note its MODULE'S' not MODULE > > makeoptions MODULES_OVERRIDE="linux linprocfs acpi nfsclient nfsserver nullfs > accf_http" > > Regards > Steve > > hi, > > I'm trying to compile only a few kernel modules, but > > using MODULES_OVERRIDE I can only select

pfind() and the proc structure

2008-03-31 Thread Rao, Nikhil
Hi List, The pfind(..) (in kern_proc.c) function below returns the proc structure for the PID passed in Say the thread that calls pfind() gets blocked at PROC_LOCK(p) (line 255 below), in the meantime what prevents the process from exiting and deallocating the proc structure ? Maybe I am missing

Re: Feature request

2008-03-31 Thread Mike Meyer
On Mon, 31 Mar 2008 11:18:56 -0700 (PDT) Patrick Dung <[EMAIL PROTECTED]> wrote: > 3. Support LDAP SSO out of the box > > Linux/Solaris/AIX have native LDAP SSO support. > I have asked about this feature before. > > The problem is whether it should integrate OpenLDAP to base system. Why OpenLDAP

Re: Popen and EVFILT_WRITE question

2008-03-31 Thread Mel
On Monday 31 March 2008 05:49:33 Dag-Erling Smørgrav wrote: > Mel <[EMAIL PROTECTED]> writes: > > Hi, > > > > from reading the manpage on EVFILT_WRITE I thought it would be an easy to > > use interface to detect when a program wants input. > > So far, that doesn't seem to be the case. Ultimately wh

Re: Feature request

2008-03-31 Thread Mohacsi Janos
On Mon, 31 Mar 2008, Patrick Dung wrote: Hello I have some suggestions about improving FreeBSD in some of the areas/features. Let's discuss. 1. Cluster capability As I know, there is: - Linux HA heartbeart in ports - LVS (Linux Virtual Server for load balancing) for FreeBSD 5.3 in http://d

Feature request

2008-03-31 Thread Patrick Dung
Hello I have some suggestions about improving FreeBSD in some of the areas/features. Let's discuss. 1. Cluster capability As I know, there is: - Linux HA heartbeart in ports - LVS (Linux Virtual Server for load balancing) for FreeBSD 5.3 in http://dragon.linux-vs.org/~dragonfly/htm/lvs_freebsd.

Re: MODULES_OVERRIDE magic needed

2008-03-31 Thread Steven Hartland
The following works fine here note its MODULE'S' not MODULE makeoptions MODULES_OVERRIDE="linux linprocfs acpi nfsclient nfsserver nullfs accf_http" Regards Steve - Original Message - From: "Danny Braniss" <[EMAIL PROTECTED]> To: Sent: Monday, March 31, 2008 3:11 PM Subject: M

Re: Purpose of O_EXEC?

2008-03-31 Thread Kostik Belousov
On Mon, Mar 31, 2008 at 06:01:48PM +0200, Ivan Voras wrote: > Hi, > What is the purpose of O_EXEC ("open file for execution") flag to > open(2)? Just a hint to the VM system on how to cache the file pages or > is there something else that makes it different from O_RDONLY? No, this is the only way

Purpose of O_EXEC?

2008-03-31 Thread Ivan Voras
Hi, What is the purpose of O_EXEC ("open file for execution") flag to open(2)? Just a hint to the VM system on how to cache the file pages or is there something else that makes it different from O_RDONLY? ___ freebsd-hackers@freebsd.org mailing list http

Re: MODULES_OVERRIDE magic needed

2008-03-31 Thread Rong-en Fan
On Mon, Mar 31, 2008 at 10:11 PM, Danny Braniss <[EMAIL PROTECTED]> wrote: > hi, > I'm trying to compile only a few kernel modules, but > using MODULES_OVERRIDE I can only select one module. > MODULE_OVERRIDE="unionfs" > or > MODULE_OVERRIDE="if_sis" > is ok, but > MODUL

Re: MODULES_OVERRIDE magic needed

2008-03-31 Thread Stefan Lambrev
Greetings, Danny Braniss wrote: hi, I'm trying to compile only a few kernel modules, but using MODULES_OVERRIDE I can only select one module. MODULE_OVERRIDE="unionfs" or MODULE_OVERRIDE="if_sis" is ok, but MODULE_OVERRIDE="if_sis unionfs" failes with either if_si

MODULES_OVERRIDE magic needed

2008-03-31 Thread Danny Braniss
hi, I'm trying to compile only a few kernel modules, but using MODULES_OVERRIDE I can only select one module. MODULE_OVERRIDE="unionfs" or MODULE_OVERRIDE="if_sis" is ok, but MODULE_OVERRIDE="if_sis unionfs" failes with either if_sis: not found if it's defined in src

Re: Popen and EVFILT_WRITE question

2008-03-31 Thread Harti Brandt
On Mon, 31 Mar 2008, Dag-Erling Smrgrav wrote: DS>Mel <[EMAIL PROTECTED]> writes: DS> DS>>EV_SET(&changes[0], fileno(proc), EVFILT_WRITE, EV_ADD|EV_ENABLE, 0, DS>>0, 0); DS>>EV_SET(&changes[1], fileno(proc), EVFILT_READ, EV_ADD|EV_ENABLE, 0, DS>>0, 0