lkml.org 
[lkml]   [2008]   [Apr]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 0/7] OMFS filesystem version 3
On Fri, Apr 18, 2008 at 6:30 AM, Szabolcs Szakacsits <szaka@ntfs-3g.org> wrote:
> On Sun, 13 Apr 2008, Bob Copeland wrote:
>
> > I don't have hard numbers, but anecdotally my FUSE version is quite
> > a bit less performant. That's no criticism of FUSE - I just haven't
> > put the time into optimizing and adding various caches.
>
> Thankfully you need none, it's already there by FUSE and the kernel. The
> trick is exactly that you can have the kernel performance and the left is
> moved to user space with typically negligible performance overhead which is
> usually well compensated with faster delivered new features and bug fixes.

Correct me if I'm wrong, but one place where caches seem necessary is for
lookup. My file system already has an inode number; my understanding
is that the kernel inode cache and dcache are caching the FUSE inode by
filename and its hashed inode number.

In FUSE, on open, I'm passed a filename which I then have to resolve into an
inode # via my own lookup. The VFS does the path_lookup as part of sys_open,
and since I get to put private data into the struct inode, I'll generally
already have the block # and various other info in the dcache by the time
open is called.

Also, if you stuff inode data into the private fh field in fuse_file_info,
you need to be sure that any subsequent lookups always return the same
inode structure, otherwise a thread doing ftruncate vs one doing truncate
will cause issues. So I created an internal dcache to solve those two
problems.

> I noticed that the OMFS kernel driver supports only the USB interface and
> the FUSE one both the network and the USB one. Isn't it possible that you
> compared the performance using the USB with the kernel vs the much slower
> and lower latency network with FUSE?

Nope, that's not possible, sorry. Both require use of USB. lkarmafs and
omfs_fuse aren't the same thing.

> If you did use the USB interface with FUSE then what exactly do you mean by
> "quite a bit less performance" in numbers and workloads? What you did, how
> long it took using what CPU?

Like I said it was anecdotal (copy 20 gigs of X) in both. I'm sure a
good portion of it is my fault, such as doing unnecessary malloc & copies
in omfs_fuse. I have put exactly zero effort into making it fast so far.

BTW, I hardly intended to start a huge VFS vs FUSE debate. I think FUSE
is great. I'm not sure it's the right fit for this, is all.

--
Bob Copeland %% www.bobcopeland.com


\
 
 \ /
  Last update: 2008-04-18 15:53    [W:0.093 / U:0.408 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site