2.2.19(xx) file unmapping on abort

From: Rakesh Tiwari (rakeshtiwari@attbi.com)
Date: Fri Mar 22 2002 - 15:02:45 EST


Relevant code -

../src/linux/mm/filemap.c
static void filemap_unmap(struct vm_area_struct *vma, unsigned long
start, size_t len)
{
    filemap_sync(vma, start, len, MS_ASYNC);
}

Question -

Does this imply that every time a process terminates abonormally, all
the dirty pages related to that mapping are flushed to the disk, even if
that was not intended ? Why can not it be simply this ? -

static void filemap_unmap(struct vm_area_struct *vma, unsigned long
start, size_t len)
{
    filemap_sync(vma, start, len, MS_INVALIDATE);
}

I call msync() at various points in the program where data in the pages
is known to be in good condition. At the abnormal program termination, I
am not really sure if data in pages is valid or not.....

Thank you.
Rakesh :-)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Mar 23 2002 - 22:00:28 EST