logoalt Hacker News

throwaway29303today at 10:16 AM1 replyview on HN

Maybe fs/select.c or the polling machinery.


Replies

suprjamitoday at 11:05 AM

Agree. The VFS is a delight to read. It's a good intro to the kernel pattern of using function pointers to provide a generic API which other functionality can plug into, simply by implementing the appropriate functions. In this case you'll see all the filesystem drivers implement the VFS operations.