I'm writing a remote block device on FreeBSD 4.6.2 As far as the network part is rather difficult, I don't want to include it in the kernel module. So I started coding my module with this overall structure in mind :
- a program reads the block device. - the module receives read and write uio requests - no physio() nor strategy() for now - and send them to a local daemon. - the local daemon send the requests to remote daemons and data/status are send back. 1. Am I wrong in the way to do it? 2. What is the clean way to pass the requests between module and local client(s)? _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

