Commit 595cf06f authored by Linus Torvalds's avatar Linus Torvalds

v2.4.13.6 -> v2.4.13.7

  - me: reinstate "delete swap cache on low swap" code
  - David Miller: ksoftirqd startup race fix
  - Hugh Dickins: make tmpfs free swap cache entries proactively
parent 857805c6
VERSION = 2 VERSION = 2
PATCHLEVEL = 4 PATCHLEVEL = 4
SUBLEVEL = 14 SUBLEVEL = 14
EXTRAVERSION =-pre6 EXTRAVERSION =-pre7
KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
......
...@@ -282,6 +282,7 @@ typedef struct page { ...@@ -282,6 +282,7 @@ typedef struct page {
#define PG_launder 15 /* written out by VM pressure.. */ #define PG_launder 15 /* written out by VM pressure.. */
/* Make it prettier to test the above... */ /* Make it prettier to test the above... */
#define UnlockPage(page) unlock_page(page)
#define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags) #define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags)
#define SetPageUptodate(page) set_bit(PG_uptodate, &(page)->flags) #define SetPageUptodate(page) set_bit(PG_uptodate, &(page)->flags)
#define ClearPageUptodate(page) clear_bit(PG_uptodate, &(page)->flags) #define ClearPageUptodate(page) clear_bit(PG_uptodate, &(page)->flags)
...@@ -296,13 +297,7 @@ typedef struct page { ...@@ -296,13 +297,7 @@ typedef struct page {
#define PageLaunder(page) test_bit(PG_launder, &(page)->flags) #define PageLaunder(page) test_bit(PG_launder, &(page)->flags)
#define SetPageLaunder(page) set_bit(PG_launder, &(page)->flags) #define SetPageLaunder(page) set_bit(PG_launder, &(page)->flags)
extern void __set_page_dirty(struct page *); extern void FASTCALL(set_page_dirty(struct page *));
static inline void set_page_dirty(struct page * page)
{
if (!test_and_set_bit(PG_dirty, &page->flags))
__set_page_dirty(page);
}
/* /*
* The first mb is necessary to safely close the critical section opened by the * The first mb is necessary to safely close the critical section opened by the
...@@ -310,14 +305,6 @@ static inline void set_page_dirty(struct page * page) ...@@ -310,14 +305,6 @@ static inline void set_page_dirty(struct page * page)
* the clear_bit and the read of the waitqueue (to avoid SMP races with a * the clear_bit and the read of the waitqueue (to avoid SMP races with a
* parallel wait_on_page). * parallel wait_on_page).
*/ */
#define UnlockPage(page) do { \
clear_bit(PG_launder, &(page)->flags); \
smp_mb__before_clear_bit(); \
if (!test_and_clear_bit(PG_locked, &(page)->flags)) BUG(); \
smp_mb__after_clear_bit(); \
if (waitqueue_active(&(page)->wait)) \
wake_up(&(page)->wait); \
} while (0)
#define PageError(page) test_bit(PG_error, &(page)->flags) #define PageError(page) test_bit(PG_error, &(page)->flags)
#define SetPageError(page) set_bit(PG_error, &(page)->flags) #define SetPageError(page) set_bit(PG_error, &(page)->flags)
#define ClearPageError(page) clear_bit(PG_error, &(page)->flags) #define ClearPageError(page) clear_bit(PG_error, &(page)->flags)
...@@ -465,6 +452,7 @@ static inline int is_page_cache_freeable(struct page * page) ...@@ -465,6 +452,7 @@ static inline int is_page_cache_freeable(struct page * page)
return page_count(page) - !!page->buffers == 1; return page_count(page) - !!page->buffers == 1;
} }
extern int can_share_swap_page(struct page *);
extern int remove_exclusive_swap_page(struct page *); extern int remove_exclusive_swap_page(struct page *);
extern void __free_pte(pte_t); extern void __free_pte(pte_t);
......
...@@ -79,7 +79,8 @@ extern struct page * __find_lock_page (struct address_space * mapping, ...@@ -79,7 +79,8 @@ extern struct page * __find_lock_page (struct address_space * mapping,
extern struct page * find_or_create_page(struct address_space *mapping, extern struct page * find_or_create_page(struct address_space *mapping,
unsigned long index, unsigned int gfp_mask); unsigned long index, unsigned int gfp_mask);
extern void lock_page(struct page *page); extern void FASTCALL(lock_page(struct page *page));
extern void FASTCALL(unlock_page(struct page *page));
#define find_lock_page(mapping, index) \ #define find_lock_page(mapping, index) \
__find_lock_page(mapping, index, page_hash(mapping, index)) __find_lock_page(mapping, index, page_hash(mapping, index))
extern struct page *find_trylock_page(struct address_space *, unsigned long); extern struct page *find_trylock_page(struct address_space *, unsigned long);
......
...@@ -361,7 +361,7 @@ void __run_task_queue(task_queue *list) ...@@ -361,7 +361,7 @@ void __run_task_queue(task_queue *list)
static int ksoftirqd(void * __bind_cpu) static int ksoftirqd(void * __bind_cpu)
{ {
int bind_cpu = *(int *) __bind_cpu; int bind_cpu = (int) (long) __bind_cpu;
int cpu = cpu_logical_map(bind_cpu); int cpu = cpu_logical_map(bind_cpu);
daemonize(); daemonize();
...@@ -401,7 +401,7 @@ static __init int spawn_ksoftirqd(void) ...@@ -401,7 +401,7 @@ static __init int spawn_ksoftirqd(void)
int cpu; int cpu;
for (cpu = 0; cpu < smp_num_cpus; cpu++) { for (cpu = 0; cpu < smp_num_cpus; cpu++) {
if (kernel_thread(ksoftirqd, (void *) &cpu, if (kernel_thread(ksoftirqd, (void *) (long) cpu,
CLONE_FS | CLONE_FILES | CLONE_SIGNAL) < 0) CLONE_FS | CLONE_FILES | CLONE_SIGNAL) < 0)
printk("spawn_ksoftirqd() failed for cpu %d\n", cpu); printk("spawn_ksoftirqd() failed for cpu %d\n", cpu);
else { else {
......
...@@ -141,10 +141,12 @@ static inline int sync_page(struct page *page) ...@@ -141,10 +141,12 @@ static inline int sync_page(struct page *page)
/* /*
* Add a page to the dirty page list. * Add a page to the dirty page list.
*/ */
void __set_page_dirty(struct page *page) void set_page_dirty(struct page *page)
{ {
if (!test_and_set_bit(PG_dirty, &page->flags)) {
struct address_space *mapping = page->mapping; struct address_space *mapping = page->mapping;
if (mapping) {
spin_lock(&pagecache_lock); spin_lock(&pagecache_lock);
list_del(&page->list); list_del(&page->list);
list_add(&page->list, &mapping->dirty_pages); list_add(&page->list, &mapping->dirty_pages);
...@@ -152,6 +154,8 @@ void __set_page_dirty(struct page *page) ...@@ -152,6 +154,8 @@ void __set_page_dirty(struct page *page)
if (mapping->host) if (mapping->host)
mark_inode_dirty_pages(mapping->host); mark_inode_dirty_pages(mapping->host);
}
}
} }
/** /**
...@@ -771,6 +775,17 @@ void ___wait_on_page(struct page *page) ...@@ -771,6 +775,17 @@ void ___wait_on_page(struct page *page)
remove_wait_queue(&page->wait, &wait); remove_wait_queue(&page->wait, &wait);
} }
void unlock_page(struct page *page)
{
clear_bit(PG_launder, &(page)->flags);
smp_mb__before_clear_bit();
if (!test_and_clear_bit(PG_locked, &(page)->flags))
BUG();
smp_mb__after_clear_bit();
if (waitqueue_active(&(page)->wait))
wake_up(&(page)->wait);
}
/* /*
* Get a lock on the page, assuming we need to sleep * Get a lock on the page, assuming we need to sleep
* to get it.. * to get it..
...@@ -1837,7 +1852,6 @@ static inline int filemap_sync_pte(pte_t * ptep, struct vm_area_struct *vma, ...@@ -1837,7 +1852,6 @@ static inline int filemap_sync_pte(pte_t * ptep, struct vm_area_struct *vma,
struct page *page = pte_page(pte); struct page *page = pte_page(pte);
if (VALID_PAGE(page) && !PageReserved(page) && ptep_test_and_clear_dirty(ptep)) { if (VALID_PAGE(page) && !PageReserved(page) && ptep_test_and_clear_dirty(ptep)) {
flush_tlb_page(vma, address); flush_tlb_page(vma, address);
if (page->mapping)
set_page_dirty(page); set_page_dirty(page);
} }
} }
......
...@@ -78,15 +78,8 @@ void __free_pte(pte_t pte) ...@@ -78,15 +78,8 @@ void __free_pte(pte_t pte)
struct page *page = pte_page(pte); struct page *page = pte_page(pte);
if ((!VALID_PAGE(page)) || PageReserved(page)) if ((!VALID_PAGE(page)) || PageReserved(page))
return; return;
/*
* free_page() used to be able to clear swap cache
* entries. We may now have to do it manually.
*/
if (page->mapping) {
if (pte_dirty(pte)) if (pte_dirty(pte))
set_page_dirty(page); set_page_dirty(page);
}
free_page_and_swap_cache(page); free_page_and_swap_cache(page);
} }
...@@ -918,35 +911,7 @@ static int do_wp_page(struct mm_struct *mm, struct vm_area_struct * vma, ...@@ -918,35 +911,7 @@ static int do_wp_page(struct mm_struct *mm, struct vm_area_struct * vma,
if (!VALID_PAGE(old_page)) if (!VALID_PAGE(old_page))
goto bad_wp_page; goto bad_wp_page;
/* if (can_share_swap_page(old_page)) {
* We can avoid the copy if:
* - we're the only user (count == 1)
* - the only other user is the swap cache,
* and the only swap cache user is itself,
* in which case we can just continue to
* use the same swap cache (it will be
* marked dirty).
*/
switch (page_count(old_page)) {
int can_reuse;
case 3:
if (!old_page->buffers)
break;
/* FallThrough */
case 2:
if (!PageSwapCache(old_page))
break;
if (TryLockPage(old_page))
break;
/* Recheck swapcachedness once the page is locked */
can_reuse = remove_exclusive_swap_page(old_page);
UnlockPage(old_page);
if (!can_reuse)
break;
/* FallThrough */
case 1:
if (PageReserved(old_page))
break;
flush_cache_page(vma, address); flush_cache_page(vma, address);
establish_pte(vma, address, page_table, pte_mkyoung(pte_mkdirty(pte_mkwrite(pte)))); establish_pte(vma, address, page_table, pte_mkyoung(pte_mkdirty(pte_mkwrite(pte))));
spin_unlock(&mm->page_table_lock); spin_unlock(&mm->page_table_lock);
...@@ -1154,10 +1119,18 @@ static int do_swap_page(struct mm_struct * mm, ...@@ -1154,10 +1119,18 @@ static int do_swap_page(struct mm_struct * mm,
} }
/* The page isn't present yet, go ahead with the fault. */ /* The page isn't present yet, go ahead with the fault. */
mm->rss++;
pte = mk_pte(page, vma->vm_page_prot);
swap_free(entry); swap_free(entry);
if (vm_swap_full()) {
lock_page(page);
remove_exclusive_swap_page(page);
UnlockPage(page);
}
mm->rss++;
pte = mk_pte(page, vma->vm_page_prot);
if (write_access && can_share_swap_page(page))
pte = pte_mkdirty(pte_mkwrite(pte));
flush_page_to_ram(page); flush_page_to_ram(page);
flush_icache_page(vma, page); flush_icache_page(vma, page);
......
...@@ -137,13 +137,9 @@ static void __free_pages_ok (struct page *page, unsigned int order) ...@@ -137,13 +137,9 @@ static void __free_pages_ok (struct page *page, unsigned int order)
return; return;
local_freelist: local_freelist:
/* if (current->nr_local_pages)
* This is a little subtle: if the allocation order goto back_local_freelist;
* wanted is major than zero we'd better take all the pages if (in_interrupt())
* local since we must deal with fragmentation too and we
* can't rely on the nr_local_pages information.
*/
if (current->nr_local_pages && !current->allocation_order)
goto back_local_freelist; goto back_local_freelist;
list_add(&page->list, &current->local_pages); list_add(&page->list, &current->local_pages);
......
...@@ -212,9 +212,7 @@ static int shmem_free_swp(swp_entry_t *dir, unsigned int count) ...@@ -212,9 +212,7 @@ static int shmem_free_swp(swp_entry_t *dir, unsigned int count)
entry = *ptr; entry = *ptr;
*ptr = (swp_entry_t){0}; *ptr = (swp_entry_t){0};
freed++; freed++;
free_swap_and_cache(entry);
/* vmscan will do the actual page freeing later.. */
swap_free (entry);
} }
return freed; return freed;
} }
......
...@@ -17,8 +17,16 @@ ...@@ -17,8 +17,16 @@
#include <asm/pgtable.h> #include <asm/pgtable.h>
/*
* We may have stale swap cache pages in memory: notice
* them here and get rid of the unnecessary final write.
*/
static int swap_writepage(struct page *page) static int swap_writepage(struct page *page)
{ {
if (remove_exclusive_swap_page(page)) {
UnlockPage(page);
return 0;
}
rw_swap_page(WRITE, page); rw_swap_page(WRITE, page);
return 0; return 0;
} }
......
...@@ -223,6 +223,64 @@ void swap_free(swp_entry_t entry) ...@@ -223,6 +223,64 @@ void swap_free(swp_entry_t entry)
} }
} }
/*
* Check if we're the only user of a swap page,
* when the page is locked.
*/
static int exclusive_swap_page(struct page *page)
{
int retval = 0;
struct swap_info_struct * p;
swp_entry_t entry;
entry.val = page->index;
p = swap_info_get(entry);
if (p) {
/* Is the only swap cache user the cache itself? */
if (p->swap_map[SWP_OFFSET(entry)] == 1) {
/* Recheck the page count with the pagecache lock held.. */
spin_lock(&pagecache_lock);
if (page_count(page) - !!page->buffers == 2)
retval = 1;
spin_unlock(&pagecache_lock);
}
swap_info_put(p);
}
return retval;
}
/*
* We can use this swap cache entry directly
* if there are no other references to it.
*
* Here "exclusive_swap_page()" does the real
* work, but we opportunistically check whether
* we need to get all the locks first..
*/
int can_share_swap_page(struct page *page)
{
int retval = 0;
switch (page_count(page)) {
case 3:
if (!page->buffers)
break;
/* Fallthrough */
case 2:
if (!PageSwapCache(page))
break;
if (TryLockPage(page))
break;
retval = exclusive_swap_page(page);
UnlockPage(page);
break;
case 1:
if (PageReserved(page))
break;
retval = 1;
}
return retval;
}
/* /*
* Work out if there are any other processes sharing this * Work out if there are any other processes sharing this
* swap cache page. Free it if you can. Return success. * swap cache page. Free it if you can. Return success.
...@@ -252,6 +310,7 @@ int remove_exclusive_swap_page(struct page *page) ...@@ -252,6 +310,7 @@ int remove_exclusive_swap_page(struct page *page)
spin_lock(&pagecache_lock); spin_lock(&pagecache_lock);
if (page_count(page) - !!page->buffers == 2) { if (page_count(page) - !!page->buffers == 2) {
__delete_from_swap_cache(page); __delete_from_swap_cache(page);
SetPageDirty(page);
retval = 1; retval = 1;
} }
spin_unlock(&pagecache_lock); spin_unlock(&pagecache_lock);
......
...@@ -74,6 +74,9 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct* ...@@ -74,6 +74,9 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct*
pte = ptep_get_and_clear(page_table); pte = ptep_get_and_clear(page_table);
flush_tlb_page(vma, address); flush_tlb_page(vma, address);
if (pte_dirty(pte))
set_page_dirty(page);
/* /*
* Is the page already in the swap cache? If so, then * Is the page already in the swap cache? If so, then
* we can just drop our reference to it without doing * we can just drop our reference to it without doing
...@@ -81,8 +84,6 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct* ...@@ -81,8 +84,6 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct*
*/ */
if (PageSwapCache(page)) { if (PageSwapCache(page)) {
entry.val = page->index; entry.val = page->index;
if (pte_dirty(pte))
set_page_dirty(page);
swap_duplicate(entry); swap_duplicate(entry);
set_swap_pte: set_swap_pte:
set_pte(page_table, swp_entry_to_pte(entry)); set_pte(page_table, swp_entry_to_pte(entry));
...@@ -110,16 +111,9 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct* ...@@ -110,16 +111,9 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct*
* Basically, this just makes it possible for us to do * Basically, this just makes it possible for us to do
* some real work in the future in "refill_inactive()". * some real work in the future in "refill_inactive()".
*/ */
if (page->mapping) { if (page->mapping)
if (pte_dirty(pte))
set_page_dirty(page);
goto drop_pte; goto drop_pte;
} if (!PageDirty(page))
/*
* Check PageDirty as well as pte_dirty: page may
* have been brought back from swap by swapoff.
*/
if (!pte_dirty(pte) && !PageDirty(page))
goto drop_pte; goto drop_pte;
/* /*
...@@ -132,7 +126,10 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct* ...@@ -132,7 +126,10 @@ static inline int try_to_swap_out(struct mm_struct * mm, struct vm_area_struct*
entry = get_swap_page(); entry = get_swap_page();
if (!entry.val) if (!entry.val)
break; break;
/* Add it to the swap cache and mark it dirty */ /* Add it to the swap cache and mark it dirty
* (adding to the page cache will clear the dirty
* and uptodate bits, so we need to do it again)
*/
if (add_to_swap_cache(page, entry) == 0) { if (add_to_swap_cache(page, entry) == 0) {
SetPageUptodate(page); SetPageUptodate(page);
set_page_dirty(page); set_page_dirty(page);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment