Messages in this thread |  | | From | Daniel Phillips <> | | Subject | Re: [patch] truncate_inode_pages | | Date | Sun, 10 Jun 2001 18:40:23 +0200 |
| |
On Sunday 10 June 2001 03:31, Andrew Morton wrote: > Daniel Phillips wrote: > > This is easy, just set the list head to the page about to be truncated. > > Works for me.
It looks good, but it's black magic - it could use a comment along the lines of:
/* * Ensure at least one pass through all three lists with lock held */
There is some fuzz on the original code that could use a scrubbing. "start" should not be the 1st full page needing truncating, it should be the first page needing truncating at all, full or partial.
The truncation condition becomes:
- if ((offset >= start) || (*partial && (offset + 1) == start)) { + if (offset >= start) { [...] - if (*partial && (offset + 1) == start) + if (*partial && offset == start)
Then the conditions are so easy to test it's not worth passing the &partial, just pass lstart... and... oh bother, it's not broke, why fix it ;-)
-- Daniel
- 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/
|  |