linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* recursive lock-enter-deadlock
@ 2001-11-21 10:19 R.Oehler
  2001-11-21 10:56 ` Stephen C. Tweedie
  0 siblings, 1 reply; 4+ messages in thread
From: R.Oehler @ 2001-11-21 10:19 UTC (permalink / raw)
  To: linux-mm

A short question (I don't have a recent 2.4.x at hand, currently):

Is this recursive lock-enter-deadlock (2.4.0) fixed in newer kernels?

Regards,
        Ralf





void truncate_inode_pages(struct address_space * mapping, loff_t lstart) 
{
        unsigned long start = (lstart + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
        unsigned partial = lstart & (PAGE_CACHE_SIZE - 1);

repeat:
        spin_lock(&pagecache_lock);
        if (truncate_list_pages(&mapping->clean_pages, start, &partial))
                goto repeat;
        if (truncate_list_pages(&mapping->dirty_pages, start, &partial))
                goto repeat;
        if (truncate_list_pages(&mapping->locked_pages, start, &partial))
                goto repeat;
        spin_unlock(&pagecache_lock);
}

 -----------------------------------------------------------------
|  Ralf Oehler
|  GDI - Gesellschaft fuer Digitale Informationstechnik mbH
|
|  E-Mail:      R.Oehler@GDImbH.com
|  Tel.:        +49 6182-9271-23 
|  Fax.:        +49 6182-25035           
|  Mail:        GDI, Bensbruchstrasse 11, D-63533 Mainhausen
|  HTTP:        www.GDImbH.com
 -----------------------------------------------------------------

time is a funny concept

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-11-21 12:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-21 10:19 recursive lock-enter-deadlock R.Oehler
2001-11-21 10:56 ` Stephen C. Tweedie
2001-11-21 11:52   ` R.Oehler
2001-11-21 12:35     ` Stephen C. Tweedie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox