linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: Johannes Weiner <hannes@cmpxchg.org>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
	"nishimura@mxp.nes.nec.co.jp" <nishimura@mxp.nes.nec.co.jp>,
	"balbir@linux.vnet.ibm.com" <balbir@linux.vnet.ibm.com>,
	"akpm@linux-foundation.org" <akpm@linux-foundation.org>,
	"hugh.dickins@tiscali.co.uk" <hugh.dickins@tiscali.co.uk>
Subject: Re: [RFC][PATCH 2/2] synchrouns swap freeing without trylock.
Date: Fri, 22 May 2009 08:46:22 +0900	[thread overview]
Message-ID: <20090522084622.b1791283.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20090521124419.GC1820@cmpxchg.org>

On Thu, 21 May 2009 14:44:20 +0200
Johannes Weiner <hannes@cmpxchg.org> wrote:

> On Thu, May 21, 2009 at 04:43:46PM +0900, KAMEZAWA Hiroyuki wrote:
> > Index: mmotm-2.6.30-May17/mm/memory.c
> > ===================================================================
> > --- mmotm-2.6.30-May17.orig/mm/memory.c
> > +++ mmotm-2.6.30-May17/mm/memory.c
> > @@ -758,10 +758,84 @@ int copy_page_range(struct mm_struct *ds
> >  	return ret;
> >  }
> >  
> > +
> > +/*
> > + * Because we are under preempt_disable (see tlb_xxx functions), we can't call
> > + * lcok_page() etc..which may sleep. At freeing swap, gatering swp_entry
> > + * which seems of-no-use but has swap cache to this struct and remove them
> > + * in batch. Because the condition to gather swp_entry to this bix is
> > + * - There is no other swap reference. &&
> > + * - There is a swap cache. &&
> > + * - Page table entry was "Not Present"
> > + * The number of entries which is caught in this is very small.
> > + */
> > +#define NR_SWAP_FREE_BATCH		(63)
> > +struct stale_swap_buffer {
> > +	int nr;
> > +	swp_entry_t ents[NR_SWAP_FREE_BATCH];
> > +};
> > +
> > +#ifdef CONFIG_SWAP
> > +static inline void push_swap_ssb(struct stale_swap_buffer *ssb, swp_entry_t ent)
> > +{
> > +	if (!ssb)
> > +		return;
> > +	ssb->ents[ssb->nr++] = ent;
> > +}
> > +
> > +static inline int ssb_full(struct stale_swap_buffer *ssb)
> > +{
> > +	if (!ssb)
> > +		return 0;
> > +	return ssb->nr == NR_SWAP_FREE_BATCH;
> > +}
> > +
> > +static void free_stale_swaps(struct stale_swap_buffer *ssb)
> > +{
> > +	if (!ssb || !ssb->nr)
> > +		return;
> > +	free_swap_batch(ssb->nr, ssb->ents);
> > +	ssb->nr = 0;
> > +}
> 
> Could you name it swapvec analogous to pagevec and make the API
> similar?
> 
sure.

> > +static struct stale_swap_buffer *alloc_ssb(void)
> > +{
> > +	/*
> > +	 * Considering the case zap_xxx can be called as a result of OOM,
> > +	 * gfp_mask here should be GFP_ATOMIC. Even if we fails to allocate,
> > +	 * global LRU can find and remove stale swap caches in such case.
> > +	 */
> > +	return kzalloc(sizeof(struct stale_swap_buffer), GFP_ATOMIC);
> > +}
> > +static inline void free_ssb(struct stale_swap_buffer *ssb)
> > +{
> > +	kfree(ssb);
> > +}
> > +#else
> > +static inline void push_swap_ssb(struct stale_swap_buffer *ssb, swp_entry_t ent)
> > +{
> > +}
> > +static inline int ssb_full(struct stale_swap_buufer *ssb)
> > +{
> > +	return 0;
> > +}
> > +static inline void free_stale_swaps(struct stale_swap_buffer *ssb)
> > +{
> > +}
> > +static inline struct stale_swap_buffer *alloc_ssb(void)
> > +{
> > +	return NULL;
> > +}
> > +static inline void free_ssb(struct stale_swap_buffer *ssb)
> > +{
> > +}
> > +#endif
> > +
> >  static unsigned long zap_pte_range(struct mmu_gather *tlb,
> >  				struct vm_area_struct *vma, pmd_t *pmd,
> >  				unsigned long addr, unsigned long end,
> > -				long *zap_work, struct zap_details *details)
> > +				long *zap_work, struct zap_details *details,
> > +				struct stale_swap_buffer *ssb)
> >  {
> >  	struct mm_struct *mm = tlb->mm;
> >  	pte_t *pte;
> > @@ -837,8 +911,17 @@ static unsigned long zap_pte_range(struc
> >  		if (pte_file(ptent)) {
> >  			if (unlikely(!(vma->vm_flags & VM_NONLINEAR)))
> >  				print_bad_pte(vma, addr, ptent, NULL);
> > -		} else if
> > -		  (unlikely(!free_swap_and_cache(pte_to_swp_entry(ptent))))
> > +		} else if (likely(ssb)) {
> > +			int ret = free_swap_and_check(pte_to_swp_entry(ptent));
> > +			if (unlikely(!ret))
> > +				print_bad_pte(vma, addr, ptent, NULL);
> > +			if (ret == 1) {
> > +				push_swap_ssb(ssb, pte_to_swp_entry(ptent));
> > +				/* need to free swaps ? */
> > +				if (ssb_full(ssb))
> > +					*zap_work = 0;
> 
> if (!swapvec_add(swapvec, pte_to_swp_entry(ptent)))
> 	*zap_work = 0;
> 
> would look more familiar, I think.
> 
sure.

> > @@ -1021,13 +1116,15 @@ unsigned long unmap_vmas(struct mmu_gath
> >  
> >  			tlb_finish_mmu(*tlbp, tlb_start, start);
> >  
> > -			if (need_resched() ||
> > +			if (need_resched() || ssb_full(ssb) ||
> >  				(i_mmap_lock && spin_needbreak(i_mmap_lock))) {
> >  				if (i_mmap_lock) {
> >  					*tlbp = NULL;
> >  					goto out;
> >  				}
> >  				cond_resched();
> > +				/* This call may sleep */
> > +				free_stale_swaps(ssb);
> 
> This checks both !!ssb and !!ssb->number in ssb_full() and in
> free_stale_swaps().  It's not the only place, by the way.
> 
> I think it's better to swap two lines here, doing free_stale_swaps()
> before cond_resched().  Because if we are going to sleep, we might as
> well be waiting for a page lock meanwhile.
> 
ok.

> > @@ -1037,6 +1134,13 @@ unsigned long unmap_vmas(struct mmu_gath
> >  	}
> >  out:
> >  	mmu_notifier_invalidate_range_end(mm, start_addr, end_addr);
> > +	/* there is stale swap cache. We may sleep and release per-cpu.*/
> > +	if (ssb && ssb->nr) {
> > +		tlb_finish_mmu(*tlbp, tlb_start, start);
> > +		free_stale_swaps(ssb);
> > +		*tlbp = tlb_gather_mmu(mm, fullmm);
> > +	}
> > +	free_ssb(ssb);
> >  	return start;	/* which is now the end (or restart) address */
> >  }
> >  
> 
> > Index: mmotm-2.6.30-May17/mm/swapfile.c
> > ===================================================================
> > --- mmotm-2.6.30-May17.orig/mm/swapfile.c
> > +++ mmotm-2.6.30-May17/mm/swapfile.c
> 
> > @@ -618,6 +619,159 @@ int free_swap_and_cache(swp_entry_t entr
> >  	return p != NULL;
> >  }
> >  
> > +/*
> > + * Free the swap entry like above, but
> > + * returns 1 if swap entry has swap cache and ready to be freed.
> > + * returns 2 if swap has other references.
> > + */
> > +int free_swap_and_check(swp_entry_t entry)
> > +{
> > +	struct swap_info_struct *p;
> > +	int ret = 0;
> > +
> > +	if (is_migration_entry(entry))
> > +		return 2;
> > +
> > +	p = swap_info_get(entry);
> > +	if (!p)
> > +		return ret;
> > +	if (swap_entry_free(p, entry, SWAP_MAP) == 1)
> > +		ret = 1;
> > +	else
> > +		ret = 2;
> 
> Wouldn't it be possible to drop the previous patch and in case
> swap_entry_free() returns 1, look up the entry in the page cache to
> see whether the last user is the cache and not a pte?

there is a race at swapin-readahead

   swap_duplicate()
   =>
   add_to_swap_cache().

So, I wrote 1/2.

After reading Hugh's comment, it seems I have to drop this all or rewrite all ;)
Anyway, Thank you for review.

-Kame





--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2009-05-21 23:47 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-21  7:41 [RFC][PATCH] synchrouns swap freeing at zapping vmas KAMEZAWA Hiroyuki
2009-05-21  7:43 ` [RFC][PATCH 1/2] change swapcount handling KAMEZAWA Hiroyuki
2009-05-21  7:43 ` [RFC][PATCH 2/2] synchrouns swap freeing without trylock KAMEZAWA Hiroyuki
2009-05-21 12:44   ` Johannes Weiner
2009-05-21 23:46     ` KAMEZAWA Hiroyuki [this message]
2009-05-21 21:00 ` [RFC][PATCH] synchrouns swap freeing at zapping vmas Hugh Dickins
2009-05-22  0:26   ` KAMEZAWA Hiroyuki
2009-05-22  4:39 ` Daisuke Nishimura
2009-05-22  5:05   ` KAMEZAWA Hiroyuki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090522084622.b1791283.kamezawa.hiroyu@jp.fujitsu.com \
    --to=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=akpm@linux-foundation.org \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=hannes@cmpxchg.org \
    --cc=hugh.dickins@tiscali.co.uk \
    --cc=linux-mm@kvack.org \
    --cc=nishimura@mxp.nes.nec.co.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox