On Sat, Jun 14, 2008 at 03:15:47AM +0100, Jamie Lokier (jamie@shareable.org) wrote:Noreover, that's true :) I regulary run and post various benchmarks comparing POHMELFS, NFS, XFS and Ext4, main goal of POHMELFS at this stage is to be essentially as fast as underlying local filesystem. And it is... Though there is a single place (random reading, all others reached FS speed, so it is from 10 to 300% faster than NFS in various loads :), but I'm working on it, I think it is not server's side though. Maybe it was a bit naive though :) But I checked lots of implementation, all of them use send()/recv() approach. NFSv4 uses a bit different, but it is a cryptic, and at least from its names it is not clear: like nfs_pagein_multi() -> nfs_pageio_complete() -> add_stats. Presumably we add stats when we have data handy... CIFS/SMB use synchronous approach. From those projects, which are not in kernel, like CRFS and CEPH, the former uses async receiving thread, while the latter is synchronous, but can select different servers for reading, more like NFSv4.1 leases. It covers all operations, including reading, directory listing, lookups, attribite changes and so on. Its main goal is to allow transaparent failover, so it has to be done for reading too. Oplocks and leases are essentially lock on given file, which allows one client to operate on it. POHMELFS does not have locks now, and they will be created depending on how distributed server will require them. In the simplesst case it can just lock file for writing and do not allow its updates from other clients. Lock aciquite can be done at write_begin time. Without lock and writeback cache in your case writeback for file Y can happen before writeback for file X, but if client does not only write, but also sync after its write, then yes, client will see later updates after more earlier. POHMELFS does not broadcast its interest in the file content until real writing happens, i.e. at writeback time. Although I can add a mode, when the same will be done during write_begin() time. In that case your example will work without sync. -- Evgeniy Polyakov --
| Greg Kroah-Hartman | [PATCH 001/196] Chinese: Add the known_regression URI to the HOWTO |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Jens Axboe | [BUG] 2.6.24-git usb reset problems |
| David Newall | Re: Slow DOWN, please!!! |
git: | |
| Andy Whitcroft | Re: VCS comparison table |
| Jakub Narebski | Octopus merge: unique (?) to git, but is it useful? |
| Jon Smirl | ! [rejected] master -> master (non-fast forward) |
| Ping Yin | why still no empty directory support in git |
| Octavian Purdila | [RFC] support for IEEE 1588 |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| David Miller | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Tantilov, Emil S | RE: [BUG] NULL pointer dereference in skb_dequeue |
| Nick Guenther | Re: Real men don't attack straw men |
| Jake Conk | Setting up ccd RAID 1 Howto OpenBSD 4.1 |
| Ingo Schwarze | Re: What is our ultimate goal?? |
| Wijnand Wiersma | Almost success: OpenBSD on Xen |
