~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/filesystems/virtiofs.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. SPDX-License-Identifier: GPL-2.0
  2 
  3 .. include:: ../disclaimer-zh_CN.rst
  4 
  5 :Original: :ref:`Documentation/filesystems/virtiofs.rst <virtiofs_index>`
  6 
  7 译者
  8 ::
  9 
 10         中文版维护者: 王文虎 Wang Wenhu <wenhu.wang@vivo.com>
 11         中文版翻译者: 王文虎 Wang Wenhu <wenhu.wang@vivo.com>
 12         中文版校译者: 王文虎 Wang Wenhu <wenhu.wang@vivo.com>
 13 
 14 ===========================================
 15 virtiofs: virtio-fs 主机<->客机共享文件系统
 16 ===========================================
 17 
 18 - Copyright (C) 2020 Vivo Communication Technology Co. Ltd.
 19 
 20 介绍
 21 ====
 22 Linux的virtiofs文件系统实现了一个半虚拟化VIRTIO类型“virtio-fs”设备的驱动,通过该\
 23 类型设备实现客机<->主机文件系统共享。它允许客机挂载一个已经导出到主机的目录。
 24 
 25 客机通常需要访问主机或者远程系统上的文件。使用场景包括:在新客机安装时让文件对其\
 26 可见;从主机上的根文件系统启动;对无状态或临时客机提供持久存储和在客机之间共享目录。
 27 
 28 尽管在某些任务可能通过使用已有的网络文件系统完成,但是却需要非常难以自动化的配置\
 29 步骤,且将存储网络暴露给客机。而virtio-fs设备通过提供不经过网络的文件系统访问文件\
 30 的设计方式解决了这些问题。
 31 
 32 另外,virto-fs设备发挥了主客机共存的优点提高了性能,并且提供了网络文件系统所不具备
 33 的一些语义功能。
 34 
 35 用法
 36 ====
 37 以``myfs``标签将文件系统挂载到``/mnt``:
 38 
 39 .. code-block:: sh
 40 
 41   guest# mount -t virtiofs myfs /mnt
 42 
 43 请查阅 https://virtio-fs.gitlab.io/ 了解配置QEMU和virtiofsd守护程序的详细信息。
 44 
 45 内幕
 46 ====
 47 由于virtio-fs设备将FUSE协议用于文件系统请求,因此Linux的virtiofs文件系统与FUSE文\
 48 件系统客户端紧密集成在一起。客机充当FUSE客户端而主机充当FUSE服务器,内核与用户空\
 49 间之间的/dev/fuse接口由virtio-fs设备接口代替。
 50 
 51 FUSE请求被置于虚拟队列中由主机处理。主机填充缓冲区中的响应部分,而客机处理请求的完成部分。
 52 
 53 将/dev/fuse映射到虚拟队列需要解决/dev/fuse和虚拟队列之间语义上的差异。每次读取\
 54 /dev/fuse设备时,FUSE客户端都可以选择要传输的请求,从而可以使某些请求优先于其他\
 55 请求。虚拟队列有其队列语义,无法更改已入队请求的顺序。在虚拟队列已满的情况下尤
 56 其关键,因为此时不可能加入高优先级的请求。为了解决此差异,virtio-fs设备采用“hiprio”\
 57 (高优先级)虚拟队列,专门用于有别于普通请求的高优先级请求。
 58 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php