its_rao
its_rao

Reputation: 11

Steps involved in any file read/write operation in linux

Would like to request your help in understanding all the steps involved in file operations (read/write) starting from user space to VFS to respective file system to respective driver and then getting data from hardware.

It would be great if someone can explain with examples.

Thanks, rao.

Upvotes: 0

Views: 919

Answers (1)

maxdev
maxdev

Reputation: 2576

This is a quite broad topic, as it goes from the very top to the very bottom of the system. Take a look at this article explaining the anatomy of the read/write system calls and this document about unix system calls.

Upvotes: 1

Related Questions