日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > linux >内容正文

linux

linux proc文件 write的原子性,linux - Linux中writev()系统调用的原子性 - 堆栈内存溢出...

發布時間:2023/12/20 linux 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 linux proc文件 write的原子性,linux - Linux中writev()系统调用的原子性 - 堆栈内存溢出... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在fs.h找到它:

static inline void file_start_write(struct file *file)

{

if (!S_ISREG(file_inode(file)->i_mode))

return;

__sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true);

}

然后在super.c:

/*

* This is an internal function, please use sb_start_{write,pagefault,intwrite}

* instead.

*/

int __sb_start_write(struct super_block *sb, int level, bool wait)

{

bool force_trylock = false;

int ret = 1;

#ifdef CONFIG_LOCKDEP

/*

* We want lockdep to tell us about possible deadlocks with freezing

* but it's it bit tricky to properly instrument it. Getting a freeze

* protection works as getting a read lock but there are subtle

* problems. XFS for example gets freeze protection on internal level

* twice in some cases, which is OK only because we already hold a

* freeze protection also on higher level. Due to these cases we have

* to use wait == F (trylock mode) which must not fail.

*/

if (wait) {

int i;

for (i = 0; i < level - 1; i++)

if (percpu_rwsem_is_held(sb->s_writers.rw_sem + i)) {

force_trylock = true;

break;

}

}

#endif

if (wait && !force_trylock)

percpu_down_read(sb->s_writers.rw_sem + level-1);

else

ret = percpu_down_read_trylock(sb->s_writers.rw_sem + level-1);

WARN_ON(force_trylock & !ret);

return ret;

}

EXPORT_SYMBOL(__sb_start_write);

再次感謝。

總結

以上是生活随笔為你收集整理的linux proc文件 write的原子性,linux - Linux中writev()系统调用的原子性 - 堆栈内存溢出...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。