patch-2.1.34 linux/ipc/shm.c
Next file: linux/kernel/ksyms.c
Previous file: linux/ipc/msg.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Mon Apr 14 09:31:10 1997
- Orig file:
v2.1.33/linux/ipc/shm.c
- Orig date:
Sun Jan 26 02:07:48 1997
diff -u --recursive --new-file v2.1.33/linux/ipc/shm.c linux/ipc/shm.c
@@ -721,7 +721,7 @@
done: /* pte_val(pte) == shp->shm_pages[idx] */
current->min_flt++;
- mem_map[MAP_NR(pte_page(pte))].count++;
+ atomic_inc(&mem_map[MAP_NR(pte_page(pte))].count);
return pte_modify(pte, shmd->vm_page_prot);
}
@@ -821,7 +821,7 @@
flush_cache_page(shmd, tmp);
set_pte(page_table,
__pte(shmd->vm_pte + SWP_ENTRY(0, idx << SHM_IDX_SHIFT)));
- mem_map[MAP_NR(pte_page(pte))].count--;
+ atomic_dec(&mem_map[MAP_NR(pte_page(pte))].count);
if (shmd->vm_mm->rss > 0)
shmd->vm_mm->rss--;
flush_tlb_page(shmd, tmp);
@@ -831,7 +831,7 @@
break;
}
- if (mem_map[MAP_NR(pte_page(page))].count != 1)
+ if (atomic_read(&mem_map[MAP_NR(pte_page(page))].count) != 1)
goto check_table;
shp->shm_pages[idx] = swap_nr;
write_swap_page (swap_nr, (char *) pte_page(page));
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov