Re: Re: NFS server not responding prevents boot

2006-05-19 Thread Sergey Babkin
From: Steven Hartland [EMAIL PROTECTED] Anyway the big question is how can I change all our NFS mounts so that failed mounts dont prevent the machines booting to the point where they can be fixed remotely i.e. have started sshd. Doh!! spent ages googling for the answer then found it in 2mins

Re: Problem with jails after upgrading to 6.1-STABLE

2006-05-19 Thread Roberto Lima
Hi, your problem is simple, if jid shows in jls yet, just try: pkill -j JID ps: -j flag works only RELENG_6 thanks and sorry for my bad english. Roberto. ___ freebsd-hackers@freebsd.org mailing list

Re: Re: NFS server not responding prevents boot

2006-05-19 Thread Steven Hartland
Sergey Babkin wrote: I usually use soft,bg. The soft option makes the operations on this filesystem fail if the server is not available instead of hanging (unkillable!) forever and waiting for the server to come up. Good tip thanks! Steve

Re: NFS server not responding prevents boot

2006-05-19 Thread Chuck Lever
Sergey Babkin wrote: From: Steven Hartland [EMAIL PROTECTED] Anyway the big question is how can I change all our NFS mounts so that failed mounts dont prevent the machines booting to the point where they can be fixed remotely i.e. have started sshd. Doh!! spent ages googling for the answer

Re: Problem with jails after upgrading to 6.1-STABLE

2006-05-19 Thread Roberto Lima
I mean that pkill -j only works in freebsd 6.x, man 8 jail says: To show and then kill processes in jail number 3 use the following commands: pgrep -lfj 3 pkill -j 3 or: killall -j 3 but i don't know why killall -j doesn't work.. Thanks, Roberto. 2006/5/19,

Re: misc questions about the devicedriver arch

2006-05-19 Thread william wallace
about devclass_find_internal devclass_find_internal will be called to create a new devclass in such 2 conditions : one is creating a new device , as : if (name) { dc = devclass_find_internal(name, 0, TRUE); another is in the function:devclass_add_driver. but ,if a driver 's name is different

Re: misc questions about the devicedriver arch

2006-05-19 Thread Warner Losh
about devclass_find_internal devclass_find_internal will be called to create a new devclass in such 2 conditions : one is creating a new device , as : if (name) { dc = devclass_find_internal(name, 0, TRUE); another is in the function:devclass_add_driver. but ,if a driver 's name is

Re: misc questions about the devicedriver arch

2006-05-19 Thread william wallace
comparing the method array of pci_pci and cardbusbridge: what losts in pci bridge but exist in cardbusbridge: 1 card interface 2 power interface 3 some functions : 3ain bus interface (bus_driver_added, cbb_driver_added), (bus_child_detached,

Re: misc questions about the devicedriver arch

2006-05-19 Thread william wallace
On 5/20/06, Warner Losh [EMAIL PROTECTED] wrote: Busses create devices to represent hardware in the system. The bus then causes these devices to be probed and attached. This latter usage is for those cases. As drivers are loaded these devices are offered to the new (and old) drivers in the