Re: [Gluster-devel] optimizing gluster fuse

2018-04-09 Thread riya khanna
On Mon, Apr 9, 2018 at 10:42 PM, Raghavendra Gowdappa wrote: > +Manoj. > > On Mon, Apr 9, 2018 at 10:18 PM, riya khanna > wrote: > >> Hi All, >> >> I'm trying to use the new framework to speed up lookups/attr/xattr >> operations by split function

Re: [Gluster-devel] optimizing gluster fuse

2018-04-09 Thread riya khanna
can also remove entries from the hash table. Please refer to the figure attached in my last email. Thanks, Riya On Tue, Apr 3, 2018 at 1:45 PM, riya khanna wrote: > I'm attaching a figure that depicts the architecture of my optimized fuse > framework. Kindly let me know if you have

Re: [Gluster-devel] optimizing gluster fuse

2018-04-02 Thread riya khanna
ses does the fast/slow split FUSE framework enable? i've already applied the framework to accelerate multiple FUSE-based stackable file systems, but want the interface to be generic enough for all FUSE file systems to take advantage of it. > Regards, > Amar > > > > > On Mon,

[Gluster-devel] optimizing gluster fuse

2018-04-01 Thread riya khanna
Hi, I've modified FUSE framework to take a part of user-space daemon code and moves it into the kernel fuse driver to minimize user-kernel-user switches during file system operations. An example would be caching getattr/getxattr/lookup/security checks etc. This design, therefore, create fast (ser