Thread: [lc-devel] Compressed Cache and Preempt/Lockbreak
Status: Beta
Brought to you by:
nitin_sf
From: Marc-Christian P. <m....@gm...> - 2002-05-16 12:57:04
|
Hi Rodrigo, noticed you made 0.23pre3 available. I will test it this evening :) Is there any chance you could also make a patch that is compatible with=20 Lockbreak from Robert Love? ... I want, and also many users of wolk, to u= se=20 LockBreak and Compressed Cache at the same time, but this is not possible= =20 yet, if both selected, reproducable system freezes occurs. Especially if = high=20 I/O is done to the disk :-( Any chance for this? :-) ... I could be your testing pal :) --=20 Kind regards Marc-Christian Petersen http://sourceforge.net/projects/wolk PGP/GnuPG Key: 1024D/569DE2E3DB441A16 Fingerprint: 3469 0CF8 CA7E 0042 7824 080A 569D E2E3 DB44 1A16 Key available at wwwkeys.pgp.net. Encrypted e-mail preferred. |
From: Rodrigo S. de C. <rc...@im...> - 2002-05-16 13:19:54
|
On Thu, May 16, 2002 at 02:56:47PM +0200, Marc-Christian Petersen wrote: > noticed you made 0.23pre3 available. I will test it this evening :) Yes, but I am not sure it's stable though. My main bug report regarding stability is a hang that happens with Paolo Ciarrocchi when he runs mmap001 program from memtest suite. Please report any bug you may hit (or submit a bug to the Bug Tracking System at Sourceforge). > Is there any chance you could also make a patch that is compatible > with Lockbreak from Robert Love? ... I want, and also many users of > wolk, to use LockBreak and Compressed Cache at the same time, but > this is not possible yet, if both selected, reproducable system > freezes occurs. Especially if high I/O is done to the disk :-( I already added this request to our Todo list and I am willing to do that as soon as I have some spare time. However I don't know when that's going to happen :-) > Any chance for this? :-) ... I could be your testing pal :) Thanks for your request. Even if I can't fix that freeze now, I'd like to know what may be causing it. Regards, -- Rodrigo S. de Castro <rc...@im...> |
From: Marc-Christian P. <m....@gm...> - 2002-05-16 17:18:13
|
On Thursday 16 May 2002 15:19, Rodrigo Souza de Castro wrote: Hi Rodrigo, > Yes, but I am not sure it's stable though. My main bug report > regarding stability is a hang that happens with Paolo Ciarrocchi when > he runs mmap001 program from memtest suite. oh, and only with mmap001 ? Nothing else is known to breakage? > Please report any bug you may hit (or submit a bug to the Bug Tracking > System at Sourceforge). i will do so. > I already added this request to our Todo list and I am willing to do > that as soon as I have some spare time. However I don't know when > that's going to happen :-) hmm, then i will tell you when: NOW! ;-)) > Thanks for your request. Even if I can't fix that freeze now, I'd like > to know what may be causing it. i can tell you: - cd /usr/src - rm -rf linux-2.4.18 - tar xzpf linux-2.4.18.tar.gz System freeze while tar do untargzip the file. Another question: Why not ALL of your compressed cache code is ifdef sign= ed? Some of your code removes existing code and replace new, other only apply= if=20 compressed cache is selected. --=20 Kind regards Marc-Christian Petersen http://sourceforge.net/projects/wolk PGP/GnuPG Key: 1024D/569DE2E3DB441A16 Fingerprint: 3469 0CF8 CA7E 0042 7824 080A 569D E2E3 DB44 1A16 Key available at wwwkeys.pgp.net. Encrypted e-mail preferred. |
From: Rodrigo S. de C. <rc...@im...> - 2002-05-16 18:54:03
|
On Thu, May 16, 2002 at 07:17:53PM +0200, Marc-Christian Petersen wrote: > On Thursday 16 May 2002 15:19, Rodrigo Souza de Castro wrote: > > Yes, but I am not sure it's stable though. My main bug report > > regarding stability is a hang that happens with Paolo Ciarrocchi when > > he runs mmap001 program from memtest suite. > > oh, and only with mmap001 ? Paolo is the only one which reported this problem with mmap001. I can't reproduce it here, for example. > Nothing else is known to breakage? Not that I know of. > > Thanks for your request. Even if I can't fix that freeze now, I'd like > > to know what may be causing it. > i can tell you: > > - cd /usr/src > - rm -rf linux-2.4.18 > - tar xzpf linux-2.4.18.tar.gz > System freeze while tar do untargzip the file. Great, it's on our Todo list too. > Another question: Why not ALL of your compressed cache code is ifdef > signed? Some of your code removes existing code and replace new, > other only apply if compressed cache is selected. It's not very nice to add #ifdefs all over the original code and that procedure it's not advisable in Documentation/CodyingStyle document either. Actually there are some function calls that are replaced by compressed cache functions, but all these functions have #ifdefs in our header file comp_cache.h. That way, if you have compressed cache disabled, these new compressed cache functions will be static inline functions that will call the original ones, not adding overhead. In case you've noticed something that it's not correctly being disabled or it's introducing overhead, I'd glad to have a look at it. Regards, -- Rodrigo S. de Castro <rc...@im...> |