minix/servers/mfs
Cristiano Giuffrida 48c6bb79f4 Driver refactory for live update and crash recovery.
SYSLIB CHANGES:
- DS calls to publish / retrieve labels consider endpoints instead of u32_t.

VFS CHANGES:
- mapdriver() only adds an entry in the dmap table in VFS.
- dev_up() is only executed upon reception of a driver up event.

INET CHANGES:
- INET no longer searches for existing drivers instances at startup.
- A newtwork driver is (re)initialized upon reception of a driver up event.
- Networking startup is now race-free by design. No need to waste 5 seconds
at startup any more.

DRIVER CHANGES:
- Every driver publishes driver up events when starting for the first time or
in case of restart when recovery actions must be taken in the upper layers.
- Driver up events are published by drivers through DS. 
- For regular drivers, VFS is normally the only subscriber, but not necessarily.
For instance, when the filter driver is in use, it must subscribe to driver
up events to initiate recovery.
- For network drivers, inet is the only subscriber for now.
- Every VFS driver is statically linked with libdriver, every network driver
is statically linked with libnetdriver.

DRIVER LIBRARIES CHANGES:
- Libdriver is extended to provide generic receive() and ds_publish() interfaces
for VFS drivers.
- driver_receive() is a wrapper for sef_receive() also used in driver_task()
to discard spurious messages that were meant to be delivered to a previous
version of the driver.
- driver_receive_mq() is the same as driver_receive() but integrates support
for queued messages.
- driver_announce() publishes a driver up event for VFS drivers and marks
the driver as initialized and expecting a DEV_OPEN message.
- Libnetdriver is introduced to provide similar receive() and ds_publish()
interfaces for network drivers (netdriver_announce() and netdriver_receive()).
- Network drivers all support live update with no state transfer now.

KERNEL CHANGES:
- Added kernel call statectl for state management. Used by driver_announce() to
unblock eventual callers sendrecing to the driver.
2010-04-08 13:41:35 +00:00
..
buf.h Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
cache.c panic() cleanup. 2010-03-05 15:05:11 +00:00
const.h - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
device.c Driver refactory for live update and crash recovery. 2010-04-08 13:41:35 +00:00
drivers.h Merge of VFS by Balasz Gerofi with Minix trunk. 2006-10-25 13:40:36 +00:00
fs.h Merge of VFS by Balasz Gerofi with Minix trunk. 2006-10-25 13:40:36 +00:00
glo.h - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
inc.h Merge of VFS by Balasz Gerofi with Minix trunk. 2006-10-25 13:40:36 +00:00
inode.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
inode.h - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
link.c Removed unused variables, added const where possible. 2010-04-07 11:25:51 +00:00
main.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
Makefile Convert drivers/ and servers/ over to bsdmake 2010-03-22 21:25:22 +00:00
misc.c - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
mount.c Driver refactory for live update and crash recovery. 2010-04-08 13:41:35 +00:00
open.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
path.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
pipe.c - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
protect.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
proto.h Move allocation of temporary inodes for cloned character special devices from 2010-03-30 15:00:09 +00:00
read.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00
stadir.c More use of endpoint_t. Other code cleanup. 2010-03-30 14:07:15 +00:00
super.c panic() cleanup. 2010-03-05 15:05:11 +00:00
super.h Support for larger disks. 2009-12-21 11:20:30 +00:00
table.c Move allocation of temporary inodes for cloned character special devices from 2010-03-30 15:00:09 +00:00
time.c - Introduce support for sticky bit. 2009-12-20 20:27:14 +00:00
type.h inodes - using types with known size 2009-11-06 08:55:07 +00:00
utility.c panic() cleanup. 2010-03-05 15:05:11 +00:00
write.c Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag tests, other code cleanup. 2010-04-01 13:25:05 +00:00