我正在研究如何在 linux 中完成系统调用读/写,我发现了这个:
....
loff_t pos = file_pos_read(f.file);
ret = vfs_read(f.file, buf, count, &pos);
file_pos_write(f.file, pos);
fdput(f);
...`
我的问题是:
锁去哪儿了?我会想象这样的事情:
....
lock(f.file); // <-- lock file struct
loff_t pos = file_pos_read(f.file);
ret = vfs_read(f.file, buf, count, &pos);
file_pos_write(f.file, pos);
fdput(f);
unlock(f.file); // <-- unlock file struct
...
如果多个线程尝试同时读/写,他们可以在相同的偏移量读/写?
如果我的理解是正确的,linux 不使用任何锁定机制来保护偏移量,这是否符合 POSIX 标准?
我确实查看了 POSIX 规范,并没有发现关于这个案例的任何信息。