This is the equivalent patch for Linux 2.2 (prepared against 2.2.19) for the swapon/procfs race also described in my previous email. sys_swapon() sets SWP_USED in p->flags when it begins to set up a swap area, and then calls vmalloc() to allocate p->swap_map[], which may sleep. Most other users of the swap info structures either traverse the swap list (to which the new swap area hasn't yet been added) or check SWP_WRITEOK (which hasn't yet been set), but get_swaparea_info() only checks for SWP_USED, and then proceeds to dereference ptr->swap_map. So reading /proc/swaps whilst doing a swapon() can Oops. This could either be solved by making get_swaparea_info() check for ptr->swap_map, or check for ((ptr->flags & SWP_WRITEOK) == SWP_WRITEOK). The patch below (applicable to 2.2 - patch for 2.4 in previous email) checks for the former on the grounds that that is what's causing the immediate problem, and some people might want to be able to use /proc/swaps to track the progress of a swapoff(). Paul diff -u linux/mm/swapfile.c linux/mm/swapfile.c --- linux/mm/swapfile.c Wed May 9 23:34:24 2001 +++ linux.new/mm/swapfile.c Fri Jun 8 17:00:54 2001 @@ -448,7 +448,7 @@ len += sprintf(buf, "Filename\t\t\tType\t\tSize\tUsed\tPriority\n"); for (i = 0 ; i < nr_swapfiles ; i++, ptr++) { - if (ptr->flags & SWP_USED) { + if ((ptr->flags & SWP_USED) && ptr->swap_map) { char * path = d_path(ptr->swap_file, page, PAGE_SIZE); len += sprintf(buf + len, "%-31s ", path); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/