Guest User

Untitled

a guest
Dec 18th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <host>:/volume /mount glusterfs defaults,x-systemd.automount,noauto 0 0
  2.  
  3. From: Tejun Heo <tj@kernel.org>
  4. To: Miklos Szeredi <mszeredi@suse.cz>, lkml <linux-kernel@vger.kernel.org>,
  5. fuse-devel@lists.sourceforge.net
  6. Subject: [PATCH] FUSE/CUSE: implement direct mmap support
  7. Date: Tue, 09 Feb 2010 15:08:36 +0900
  8. Cc: Lars Wendler <polynomial-c@gentoo.org>,
  9. Andrew Morton <akpm@linux-foundation.org>
  10.  
  11. Implement FUSE direct mmap support. The server can redirect client mmap
  12. requests to any SHMLBA aligned offset in the custom address space attached
  13. to the fuse channel. The address space is managed by the server using
  14. mmap/munmap(2). The SHMLBA alignment requirement is necessary to avoid
  15. cache aliasing issues on archs with virtually indexed caches as FUSE
  16. direct mmaps are basically shared memory between clients and the server
Add Comment
Please, Sign In to add comment