来自 fsync(2):
fsync() transfers ("flushes") all modified in-core data of (i.e., modified
buffer cache pages for) the file referred to by the file descriptor fd to
the disk device (or other permanent storage device)
如果fd是通过shm_open(3p)或 `memfd_create(2)*等内存 API 之一获得的, fsync 会产生什么影响?是否有必要明确提交对内存对象的更改?