VFS Operations - File Read
Entry function: sys_read, in fs/read_write.c:
- Using the file descriptor, get the (already opened) file struct.
- Verify that the file's access mode allows read.
- Check locks.
- Invoke the underlying 'read' file operation of the file's inode.
Originally written by
guy keren