Re: threaded FS-drivers

Martin von Loewis (martin@mira.isdn.cs.tu-berlin.de)
Mon, 2 Feb 1998 09:53:18 +0100


> Is there any point to using threaded FS drivers? or threaded physical
> hardware drivers?

The Linux file system drivers have been threaded for ages. Multiple
processes can access different files in an overlapping fashion; while
one process is waiting for a request to complete, the file system might
already look into the request of another process.

There are a few places where concurrent access is not desirable, Linux
supports locks on the inode level and on the superblock level for
these cases.

Hope this helps,
Martin