* readdir loses renamed files @ 2004-10-25 1:21 Timo Sirainen 2004-10-25 8:29 ` Chris Wedgwood 2004-10-25 12:37 ` Theodore Ts'o 0 siblings, 2 replies; 17+ messages in thread From: Timo Sirainen @ 2004-10-25 1:21 UTC (permalink / raw) To: linux-kernel [-- Attachment #1: Type: text/plain, Size: 753 bytes --] I'd have thought this had already been asked many times before, but google didn't show me anything. My problem is that mails in a large maildir get temporarily lost. This happens because readdir() never returns a file which was just rename()d by another process. Either new or the old name would have been fine, but it's not returned at all. Is there a chance this could get fixed? Every OS/filesystem I've tested so far has had the same problem, so I'll have to implement some extra locking anyway (so much for maildir being lockless), but it would be nice to have at least one OS where it works without the extra locking overhead. I have a test program if someone wants to try it: http://dovecot.org/tmp/readdir.c (and please Cc replies) [-- Attachment #2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 186 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 1:21 readdir loses renamed files Timo Sirainen @ 2004-10-25 8:29 ` Chris Wedgwood 2004-10-25 12:35 ` Timo Sirainen 2004-10-25 12:37 ` Theodore Ts'o 1 sibling, 1 reply; 17+ messages in thread From: Chris Wedgwood @ 2004-10-25 8:29 UTC (permalink / raw) To: Timo Sirainen; +Cc: linux-kernel On Mon, Oct 25, 2004 at 04:21:57AM +0300, Timo Sirainen wrote: > My problem is that mails in a large maildir get temporarily > lost. This happens because readdir() never returns a file which was > just rename()d by another process. Either new or the old name would > have been fine, but it's not returned at all. i don't think there are well defined semantics for this, it's intrinsically hard to make it work the way you want for a number of reasons (and what they are depends on the underlying fs) > Is there a chance this could get fixed? Every OS/filesystem I've > tested so far has had the same problem i'll argue it's an application bug > so I'll have to implement some extra locking anyway (so much for > maildir being lockless), but it would be nice to have at least one > OS where it works without the extra locking overhead. why do you need extra locking? the next time the maildir is scanned the message(s) will appear surely? ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 8:29 ` Chris Wedgwood @ 2004-10-25 12:35 ` Timo Sirainen 2004-10-25 12:47 ` Jan Engelhardt 0 siblings, 1 reply; 17+ messages in thread From: Timo Sirainen @ 2004-10-25 12:35 UTC (permalink / raw) To: Chris Wedgwood; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 1720 bytes --] On 25.10.2004, at 11:29, Chris Wedgwood wrote: > On Mon, Oct 25, 2004 at 04:21:57AM +0300, Timo Sirainen wrote: > >> My problem is that mails in a large maildir get temporarily >> lost. This happens because readdir() never returns a file which was >> just rename()d by another process. Either new or the old name would >> have been fine, but it's not returned at all. > > i don't think there are well defined semantics for this, it's > intrinsically hard to make it work the way you want for a number of > reasons (and what they are depends on the underlying fs) Thought so. Maybe reiser4 would work? >> so I'll have to implement some extra locking anyway (so much for >> maildir being lockless), but it would be nice to have at least one >> OS where it works without the extra locking overhead. > > why do you need extra locking? the next time the maildir is scanned > the message(s) will appear surely? So if I lose a file, how many times should I scan the directory again to know if it's really gone? And is it really worth the extra overhead when it's hardly ever needed? I'd rather not knowingly build software that works only in optimal conditions. The test program that I had showed that the next scan didn't necessarily return it either. The file was sometimes lost for as long as 5 scans. Of course I could just accept that messages go away and come back again, but it's not very nice for an IMAP server to do. Some clients attach metadata to messages based on their IMAP UID, so that would be lost. I guess one solution would be to use one of the dnotify's replacements which tells which files were added, removed or renamed. Then readdir() would be needed only when mailbox is being opened. [-- Attachment #2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 186 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 12:35 ` Timo Sirainen @ 2004-10-25 12:47 ` Jan Engelhardt 0 siblings, 0 replies; 17+ messages in thread From: Jan Engelhardt @ 2004-10-25 12:47 UTC (permalink / raw) To: Timo Sirainen; +Cc: Chris Wedgwood, linux-kernel >So if I lose a file, how many times should I scan the directory again >to know if it's really gone? And is it really worth the extra overhead Maybe the use of stat() will show whether a file really exists. >The test program that I had showed that the next scan didn't >necessarily return it either. The file was sometimes lost for as long >as 5 scans. Unrelated to this issue, I had a look into reiser3 for some other project of mine. What I've found was that upon renaming() a file, the old entry is marked invisble first, and then the new one is marked visible. You would need to meet a lot of conditions to have a file lost (IMO): - using reiser3 - reiserfs_rename() is suspended for as long as 5 scans (only happens either on SMP or UP+preempt) - reiserfs_rename() hangs... somwhat, because while(i<5){while(readdir(...)){}} usually takes longer than a rename Jan Engelhardt -- Gesellschaft für Wissenschaftliche Datenverarbeitung Am Fassberg, 37077 Göttingen, www.gwdg.de ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 1:21 readdir loses renamed files Timo Sirainen 2004-10-25 8:29 ` Chris Wedgwood @ 2004-10-25 12:37 ` Theodore Ts'o 2004-10-25 13:22 ` Timo Sirainen 2004-10-28 9:34 ` Matthias Andree 1 sibling, 2 replies; 17+ messages in thread From: Theodore Ts'o @ 2004-10-25 12:37 UTC (permalink / raw) To: Timo Sirainen; +Cc: linux-kernel On Mon, Oct 25, 2004 at 04:21:57AM +0300, Timo Sirainen wrote: > I'd have thought this had already been asked many times before, but > google didn't show me anything. > > My problem is that mails in a large maildir get temporarily lost. This > happens because readdir() never returns a file which was just rename()d > by another process. Either new or the old name would have been fine, > but it's not returned at all. > > Is there a chance this could get fixed? Every OS/filesystem I've tested > so far has had the same problem, so I'll have to implement some extra > locking anyway (so much for maildir being lockless), but it would be > nice to have at least one OS where it works without the extra locking > overhead. In some cases it won't even just get lost, but the old and new name can both be returned. For example, if you assume the use of a simple non-tree, linked-list implementation of a directory, such can be found in Solaris's ufs, BSD 4.3's FFS, Linux's ext2 and minix filesystems, and many others, and you have a fully tightly packed directory (i.e., no gaps), with the directory entry "foo" at the beginning of the file, and readdir() has already returned the first "foo" entry when some other application renames it "Supercalifragilisticexpialidocious", the new name will not fit in the old name's directory location, so it will be placed at the end of the directory --- where it will be returned by readdir() a second time. This is not a bug; the POSIX specification explicitly allows this behavior. If a filename is renamed during a readdir() session of a directory, it is undefined where that neither, either, or both of the new and old filenames will be returned. And that's because there's no good way to do this without trashing the performance of the system, especially when most applications don't care. (Do you really want your entire system running significantly slower, penalizing all other applications on your system, just because of one stupid/badly-written application?) In order to do this, the kernel would have to atomically snapshot the directory --- even one which might be several megabytes in length, and store a copy of it in memory, while the application calls readdir(). Several processes could perform a denial-of-service attack by starting to call readdir(), and then stopping. This would end up locking up huge amounts of non-pageable system memory, and cause the system to come down in a hurry. - Ted ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 12:37 ` Theodore Ts'o @ 2004-10-25 13:22 ` Timo Sirainen 2004-10-28 9:34 ` Matthias Andree 1 sibling, 0 replies; 17+ messages in thread From: Timo Sirainen @ 2004-10-25 13:22 UTC (permalink / raw) To: Theodore Ts'o; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 1637 bytes --] On 25.10.2004, at 15:37, Theodore Ts'o wrote: > This is not a bug; the POSIX specification explicitly allows this > behavior. If a filename is renamed during a readdir() session of a > directory, it is undefined where that neither, either, or both of the > new and old filenames will be returned. BTW. Would be nice if this was mentioned in readdir(3) manual page. UNIX98 specs also didn't mention rename specifically, and I don't know of other freely available specs. > And that's because there's no good way to do this without trashing the > performance of the system, especially when most applications don't > care. (Do you really want your entire system running significantly > slower, penalizing all other applications on your system, just because > of one stupid/badly-written application?) In order to do this, the > kernel would have to atomically snapshot the directory --- even one > which might be several megabytes in length, and store a copy of it in > memory, while the application calls readdir(). Several processes > could perform a denial-of-service attack by starting to call > readdir(), and then stopping. This would end up locking up huge > amounts of non-pageable system memory, and cause the system to come > down in a hurry. That would be a generic kernel solution for it, but it's not what I'm asking. Only thing needed not to lose the files would be that renamed files appeared always at the end of the readdir() list, or at the same location where the original file was. But apparently that's not how filesystems nowadays implement it, and probably not very simple to change to work that way. [-- Attachment #2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 186 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-25 12:37 ` Theodore Ts'o 2004-10-25 13:22 ` Timo Sirainen @ 2004-10-28 9:34 ` Matthias Andree 2004-10-28 11:44 ` Andreas Dilger 2004-10-28 17:06 ` Theodore Ts'o 1 sibling, 2 replies; 17+ messages in thread From: Matthias Andree @ 2004-10-28 9:34 UTC (permalink / raw) To: Theodore Ts'o, Timo Sirainen, linux-kernel On Mon, 25 Oct 2004, Theodore Ts'o wrote: > And that's because there's no good way to do this without trashing the > performance of the system, especially when most applications don't > care. (Do you really want your entire system running significantly > slower, penalizing all other applications on your system, just because > of one stupid/badly-written application?) Please - is it really necessary that application writers are offended in this way? Timo is investing enormous time and effort in writing a *good* application, and he's effectively seeking a way to *robustly* deal with Maildir format mail storage. Please leave it at "readdir/getdents don't work the way you expect and cannot for this and that reason." Timo tries to implement a *robust* Maildir reader and has just bumped into the flaws of DJB's "no-locking" store. Yes, it's a mail server again that poses file system questions on this list; only it's IMAP this time rather than SMTP and directory synchronous I/O... > In order to do this, the > kernel would have to atomically snapshot the directory --- even one > which might be several megabytes in length, and store a copy of it in > memory, while the application calls readdir(). Several processes > could perform a denial-of-service attack by starting to call > readdir(), and then stopping. This would end up locking up huge > amounts of non-pageable system memory, and cause the system to come > down in a hurry. I'd like to question that. Just some rough thoughts: 1. the number of open file handles (including directories seen as files for a moment at least) is limited per process, and I'd think the number of directories open can be lower 2. versioned information might provide what the application wants without locking up the system 3. the application could be offered an interface for atomic directory reads that requires the application to provide sufficient memory in a single contiguous buffer (making it thread-safe in the same go). -- Matthias Andree ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 9:34 ` Matthias Andree @ 2004-10-28 11:44 ` Andreas Dilger 2004-10-28 14:34 ` Jan Engelhardt ` (2 more replies) 2004-10-28 17:06 ` Theodore Ts'o 1 sibling, 3 replies; 17+ messages in thread From: Andreas Dilger @ 2004-10-28 11:44 UTC (permalink / raw) To: Theodore Ts'o, Timo Sirainen, linux-kernel On Oct 28, 2004 11:34 +0200, Matthias Andree wrote: > On Mon, 25 Oct 2004, Theodore Ts'o wrote: > > And that's because there's no good way to do this without trashing the > > performance of the system, especially when most applications don't > > care. (Do you really want your entire system running significantly > > slower, penalizing all other applications on your system, just because > > of one stupid/badly-written application?) > > Please - is it really necessary that application writers are offended in > this way? Timo is investing enormous time and effort in writing a *good* > application, and he's effectively seeking a way to *robustly* deal with > Maildir format mail storage. Please leave it at "readdir/getdents don't > work the way you expect and cannot for this and that reason." > > Timo tries to implement a *robust* Maildir reader and has just bumped > into the flaws of DJB's "no-locking" store. > > Yes, it's a mail server again that poses file system questions on this > list; only it's IMAP this time rather than SMTP and directory > synchronous I/O... I read over in reiserfs-list that the reason for the crazy renaming is to store "attributes" as part of the filename. Why not just store them as EAs as they were intended? With the large inode patches (posted here a couple of times already) the cost of storing EAs is negligible. Cheers, Andreas -- Andreas Dilger http://sourceforge.net/projects/ext2resize/ http://members.shaw.ca/adilger/ http://members.shaw.ca/golinux/ ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 11:44 ` Andreas Dilger @ 2004-10-28 14:34 ` Jan Engelhardt 2004-10-28 15:41 ` Matthias Andree 2004-10-29 21:15 ` Hans Reiser 2 siblings, 0 replies; 17+ messages in thread From: Jan Engelhardt @ 2004-10-28 14:34 UTC (permalink / raw) To: Andreas Dilger; +Cc: Theodore Ts'o, Timo Sirainen, linux-kernel >I read over in reiserfs-list that the reason for the crazy renaming is >to store "attributes" as part of the filename. Why not just store them >as EAs as they were intended? With the large inode patches (posted here >a couple of times already) the cost of storing EAs is negligible. Well, reiser stores attributes (at least ACLs) in files. Jan Engelhardt -- Gesellschaft für Wissenschaftliche Datenverarbeitung Am Fassberg, 37077 Göttingen, www.gwdg.de ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 11:44 ` Andreas Dilger 2004-10-28 14:34 ` Jan Engelhardt @ 2004-10-28 15:41 ` Matthias Andree 2004-10-29 21:15 ` Hans Reiser 2 siblings, 0 replies; 17+ messages in thread From: Matthias Andree @ 2004-10-28 15:41 UTC (permalink / raw) To: Theodore Ts'o, Timo Sirainen, linux-kernel On Thu, 28 Oct 2004, Andreas Dilger wrote: > I read over in reiserfs-list that the reason for the crazy renaming is > to store "attributes" as part of the filename. Why not just store them > as EAs as they were intended? With the large inode patches (posted here > a couple of times already) the cost of storing EAs is negligible. The "attributes" stored are really mail flags such as "read", "replied to", the size and so on. Not sure if it makes sense storing these as extended attributes, or, the other way around, are EAs supposed to be some "associated" generic file that can be attached to an existing file? At any rate, the resulting software would no longer be able to call its backing storage to be in "Maildir" format. I know AmigaOS had a limited amount of space (some dozen characters) for a generic file comment, but otherwise. -- Matthias Andree ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 11:44 ` Andreas Dilger 2004-10-28 14:34 ` Jan Engelhardt 2004-10-28 15:41 ` Matthias Andree @ 2004-10-29 21:15 ` Hans Reiser 2004-10-29 21:28 ` Jan Engelhardt 2 siblings, 1 reply; 17+ messages in thread From: Hans Reiser @ 2004-10-29 21:15 UTC (permalink / raw) To: Andreas Dilger; +Cc: Theodore Ts'o, Timo Sirainen, linux-kernel Andreas Dilger wrote: >On Oct 28, 2004 11:34 +0200, Matthias Andree wrote: > > >>On Mon, 25 Oct 2004, Theodore Ts'o wrote: >> >> >>>And that's because there's no good way to do this without trashing the >>>performance of the system, especially when most applications don't >>>care. (Do you really want your entire system running significantly >>>slower, penalizing all other applications on your system, just because >>>of one stupid/badly-written application?) >>> >>> >>Please - is it really necessary that application writers are offended in >>this way? Timo is investing enormous time and effort in writing a *good* >>application, and he's effectively seeking a way to *robustly* deal with >>Maildir format mail storage. Please leave it at "readdir/getdents don't >>work the way you expect and cannot for this and that reason." >> >>Timo tries to implement a *robust* Maildir reader and has just bumped >>into the flaws of DJB's "no-locking" store. >> >>Yes, it's a mail server again that poses file system questions on this >>list; only it's IMAP this time rather than SMTP and directory >>synchronous I/O... >> >> Matthias is right. readdir is badly architected, and no one has fixed it for ~30 years. It should be possible to perform an atomic readdir if that is what you want to do and if you have space in your process to stuff the result. Hans ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-29 21:15 ` Hans Reiser @ 2004-10-29 21:28 ` Jan Engelhardt 2004-10-30 19:11 ` Hans Reiser 0 siblings, 1 reply; 17+ messages in thread From: Jan Engelhardt @ 2004-10-29 21:28 UTC (permalink / raw) To: Hans Reiser Cc: Andreas Dilger, Theodore Ts'o, Timo Sirainen, linux-kernel >Matthias is right. readdir is badly architected, and no one has fixed >it for ~30 years. As long as M$ windows has the same problem, it's justified that we have that problem for 30 years now. >It should be possible to perform an atomic readdir if that is what you >want to do and if you have space in your process to stuff the result. How much would it cost to always append the new name into the directory rather than modifying it in place? OTOH, especially Reiserfs does not use linear file lists, so it would get tricky. ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-29 21:28 ` Jan Engelhardt @ 2004-10-30 19:11 ` Hans Reiser 2004-10-31 6:32 ` Jan Engelhardt 0 siblings, 1 reply; 17+ messages in thread From: Hans Reiser @ 2004-10-30 19:11 UTC (permalink / raw) To: Jan Engelhardt Cc: Andreas Dilger, Theodore Ts'o, Timo Sirainen, linux-kernel Jan Engelhardt wrote: >>Matthias is right. readdir is badly architected, and no one has fixed >>it for ~30 years. >> >> > >As long as M$ windows has the same problem, it's justified that we have that >problem for 30 years now. > > > >>It should be possible to perform an atomic readdir if that is what you >>want to do and if you have space in your process to stuff the result. >> >> > >How much would it cost to always append the new name into the directory rather >than modifying it in place? > Forgive me, what does the sentence above mean? Paste it out of order? Better to fix the API. > OTOH, especially Reiserfs does not use linear file >lists, so it would get tricky. > > > > > We use sorted directories. ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-30 19:11 ` Hans Reiser @ 2004-10-31 6:32 ` Jan Engelhardt 2004-11-01 5:38 ` Hans Reiser 0 siblings, 1 reply; 17+ messages in thread From: Jan Engelhardt @ 2004-10-31 6:32 UTC (permalink / raw) To: linux-kernel; +Cc: reiser >>>It should be possible to perform an atomic readdir if that is what you >>>want to do and if you have space in your process to stuff the result. >> >>How much would it cost to always append the new name into the directory rather >>than modifying it in place? > >Forgive me, what does the sentence above mean? Paste it out of order? As I have read from earlier replies, ext2/3 replaces a filename with the new one, given that it is the same length or shorter, and especially that might skip a while when readdir()ing. So I was concerned about the speed impact which would arise, if the filename was never modified in-place but always appended as a new object to the end-of-directory. Jan Engelhardt -- Gesellschaft für Wissenschaftliche Datenverarbeitung Am Fassberg, 37077 Göttingen, www.gwdg.de ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-31 6:32 ` Jan Engelhardt @ 2004-11-01 5:38 ` Hans Reiser 0 siblings, 0 replies; 17+ messages in thread From: Hans Reiser @ 2004-11-01 5:38 UTC (permalink / raw) To: Jan Engelhardt; +Cc: linux-kernel, Vladimir Demidov Jan Engelhardt wrote: >>>>It should be possible to perform an atomic readdir if that is what you >>>>want to do and if you have space in your process to stuff the result. >>>> >>>> >>>How much would it cost to always append the new name into the directory rather >>>than modifying it in place? >>> >>> >>Forgive me, what does the sentence above mean? Paste it out of order? >> >> > >As I have read from earlier replies, ext2/3 replaces a filename with the new >one, given that it is the same length or shorter, and especially that might >skip a while when readdir()ing. >So I was concerned about the speed impact which would arise, if the filename >was never modified in-place but always appended as a new object to the >end-of-directory. > > > >Jan Engelhardt > > The api is fundamentally broken. Sorry. Will try to avoid making that mistake in sys_reiser4. ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 9:34 ` Matthias Andree 2004-10-28 11:44 ` Andreas Dilger @ 2004-10-28 17:06 ` Theodore Ts'o 2004-10-28 19:00 ` Bernd Eckenfels 1 sibling, 1 reply; 17+ messages in thread From: Theodore Ts'o @ 2004-10-28 17:06 UTC (permalink / raw) To: Timo Sirainen, linux-kernel On Thu, Oct 28, 2004 at 11:34:26AM +0200, Matthias Andree wrote: > Please - is it really necessary that application writers are offended in > this way? Timo is investing enormous time and effort in writing a *good* > application, and he's effectively seeking a way to *robustly* deal with > Maildir format mail storage. Please leave it at "readdir/getdents don't > work the way you expect and cannot for this and that reason." > > Timo tries to implement a *robust* Maildir reader and has just bumped > into the flaws of DJB's "no-locking" store. That's true, I should also have included badly-/stupidly- designed mailstore architectures in the list of possibilities. :-) Stepping back for a moment, do you really need such semantics? After all, when you're dealing with Maildir, even if you're not dealing with rename(), you still have to worry about programs deleting or inserting (or moving between Mailboxes) messages out from under you while you are doing the readdir() scan. Since by definition Maildir is lockless, it is expected that applications be able to deal with such changes. If they can't, either the design of Maildir is busted (and I have my own opinions of DJB's designs, which aren't worth going into here) or the application is busted. Take your pick. > Just some rough thoughts: > > 1. the number of open file handles (including directories seen as files > for a moment at least) is limited per process, and I'd think the > number of directories open can be lower But directory sizes are unlimited --- they could conceivably be hundreds of megabytes, and so it's not reasonable to require the kernel to do the snapshot using unpageable kernel memory. > 2. versioned information might provide what the application wants > without locking up the system Not given the POSIX readdir/opendir interface! (And if we have the freedom to redesign the readdir POSIX interface, there are plenty of other changes I'd make along the way. Nuking telldir and seekdir would be near the top of the list. If you want an example of truly brain-damaged design, just take telldir and seekdir... please!) > 3. the application could be offered an interface for atomic directory > reads that requires the application to provide sufficient memory in a > single contiguous buffer (making it thread-safe in the same go). Actually, you can do this today, if you use the underlying sys_getdents64 system call. But the application would have to allocate potentially a very large amount of userspace memory. - Ted ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: readdir loses renamed files 2004-10-28 17:06 ` Theodore Ts'o @ 2004-10-28 19:00 ` Bernd Eckenfels 0 siblings, 0 replies; 17+ messages in thread From: Bernd Eckenfels @ 2004-10-28 19:00 UTC (permalink / raw) To: linux-kernel In article <20041028170642.GA8220@thunk.org> you wrote: > But directory sizes are unlimited --- they could conceivably be > hundreds of megabytes, and so it's not reasonable to require the > kernel to do the snapshot using unpageable kernel memory. Well, I guess that what COW or Versioning is for. Another option would be a optimistic locking readdir alternative (or usage of fam-like events in addition). Gruss Bernd ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2004-11-01 5:38 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2004-10-25 1:21 readdir loses renamed files Timo Sirainen 2004-10-25 8:29 ` Chris Wedgwood 2004-10-25 12:35 ` Timo Sirainen 2004-10-25 12:47 ` Jan Engelhardt 2004-10-25 12:37 ` Theodore Ts'o 2004-10-25 13:22 ` Timo Sirainen 2004-10-28 9:34 ` Matthias Andree 2004-10-28 11:44 ` Andreas Dilger 2004-10-28 14:34 ` Jan Engelhardt 2004-10-28 15:41 ` Matthias Andree 2004-10-29 21:15 ` Hans Reiser 2004-10-29 21:28 ` Jan Engelhardt 2004-10-30 19:11 ` Hans Reiser 2004-10-31 6:32 ` Jan Engelhardt 2004-11-01 5:38 ` Hans Reiser 2004-10-28 17:06 ` Theodore Ts'o 2004-10-28 19:00 ` Bernd Eckenfels
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.