All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Alexey Kardashevskiy <aik@ozlabs.ru>
Cc: linuxppc-dev@lists.ozlabs.org, Paul Mackerras <paulus@samba.org>,
	kvm-ppc@vger.kernel.org, kvm@vger.kernel.org
Subject: Re: [PATCH kernel v2 2/6] KVM: PPC: Use RCU for arch.spapr_tce_tables
Date: Sun, 24 Jan 2016 23:46:44 +0000	[thread overview]
Message-ID: <20160124234644.GB27454@voom.redhat.com> (raw)
In-Reply-To: <1453361977-19589-3-git-send-email-aik@ozlabs.ru>

[-- Attachment #1: Type: text/plain, Size: 3470 bytes --]

On Thu, Jan 21, 2016 at 06:39:33PM +1100, Alexey Kardashevskiy wrote:
> At the moment spapr_tce_tables is not protected against races.

That's not really true - it's protected by the kvm->lock mutex.

> This makes
> use of RCU-variants of list helpers. As some bits are executed in real
> mode, this makes use of just introduced list_for_each_entry_rcu_notrace().
> 
> This converts release_spapr_tce_table() to a RCU scheduled handler.

The change itself is fine, though.

> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
>  arch/powerpc/include/asm/kvm_host.h |  1 +
>  arch/powerpc/kvm/book3s.c           |  2 +-
>  arch/powerpc/kvm/book3s_64_vio.c    | 20 +++++++++++---------
>  3 files changed, 13 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h
> index 271fefb..c7ee696 100644
> --- a/arch/powerpc/include/asm/kvm_host.h
> +++ b/arch/powerpc/include/asm/kvm_host.h
> @@ -184,6 +184,7 @@ struct kvmppc_spapr_tce_table {
>  	struct kvm *kvm;
>  	u64 liobn;
>  	u32 window_size;
> +	struct rcu_head rcu;
>  	struct page *pages[0];
>  };
>  
> diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c
> index 638c6d9..b34220d 100644
> --- a/arch/powerpc/kvm/book3s.c
> +++ b/arch/powerpc/kvm/book3s.c
> @@ -807,7 +807,7 @@ int kvmppc_core_init_vm(struct kvm *kvm)
>  {
>  
>  #ifdef CONFIG_PPC64
> -	INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
> +	INIT_LIST_HEAD_RCU(&kvm->arch.spapr_tce_tables);
>  	INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
>  #endif
>  
> diff --git a/arch/powerpc/kvm/book3s_64_vio.c b/arch/powerpc/kvm/book3s_64_vio.c
> index 54cf9bc..9526c34 100644
> --- a/arch/powerpc/kvm/book3s_64_vio.c
> +++ b/arch/powerpc/kvm/book3s_64_vio.c
> @@ -45,19 +45,16 @@ static long kvmppc_stt_npages(unsigned long window_size)
>  		     * sizeof(u64), PAGE_SIZE) / PAGE_SIZE;
>  }
>  
> -static void release_spapr_tce_table(struct kvmppc_spapr_tce_table *stt)
> +static void release_spapr_tce_table(struct rcu_head *head)
>  {
> -	struct kvm *kvm = stt->kvm;
> +	struct kvmppc_spapr_tce_table *stt = container_of(head,
> +			struct kvmppc_spapr_tce_table, rcu);
>  	int i;
>  
> -	mutex_lock(&kvm->lock);
> -	list_del(&stt->list);
>  	for (i = 0; i < kvmppc_stt_npages(stt->window_size); i++)
>  		__free_page(stt->pages[i]);
> +
>  	kfree(stt);
> -	mutex_unlock(&kvm->lock);
> -
> -	kvm_put_kvm(kvm);
>  }
>  
>  static int kvm_spapr_tce_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
> @@ -88,7 +85,12 @@ static int kvm_spapr_tce_release(struct inode *inode, struct file *filp)
>  {
>  	struct kvmppc_spapr_tce_table *stt = filp->private_data;
>  
> -	release_spapr_tce_table(stt);
> +	list_del_rcu(&stt->list);
> +
> +	kvm_put_kvm(stt->kvm);
> +
> +	call_rcu(&stt->rcu, release_spapr_tce_table);
> +
>  	return 0;
>  }
>  
> @@ -131,7 +133,7 @@ long kvm_vm_ioctl_create_spapr_tce(struct kvm *kvm,
>  	kvm_get_kvm(kvm);
>  
>  	mutex_lock(&kvm->lock);
> -	list_add(&stt->list, &kvm->arch.spapr_tce_tables);
> +	list_add_rcu(&stt->list, &kvm->arch.spapr_tce_tables);
>  
>  	mutex_unlock(&kvm->lock);
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: David Gibson <david@gibson.dropbear.id.au>
To: Alexey Kardashevskiy <aik@ozlabs.ru>
Cc: linuxppc-dev@lists.ozlabs.org, Paul Mackerras <paulus@samba.org>,
	kvm-ppc@vger.kernel.org, kvm@vger.kernel.org
Subject: Re: [PATCH kernel v2 2/6] KVM: PPC: Use RCU for arch.spapr_tce_tables
Date: Mon, 25 Jan 2016 10:46:44 +1100	[thread overview]
Message-ID: <20160124234644.GB27454@voom.redhat.com> (raw)
In-Reply-To: <1453361977-19589-3-git-send-email-aik@ozlabs.ru>

[-- Attachment #1: Type: text/plain, Size: 3470 bytes --]

On Thu, Jan 21, 2016 at 06:39:33PM +1100, Alexey Kardashevskiy wrote:
> At the moment spapr_tce_tables is not protected against races.

That's not really true - it's protected by the kvm->lock mutex.

> This makes
> use of RCU-variants of list helpers. As some bits are executed in real
> mode, this makes use of just introduced list_for_each_entry_rcu_notrace().
> 
> This converts release_spapr_tce_table() to a RCU scheduled handler.

The change itself is fine, though.

> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
>  arch/powerpc/include/asm/kvm_host.h |  1 +
>  arch/powerpc/kvm/book3s.c           |  2 +-
>  arch/powerpc/kvm/book3s_64_vio.c    | 20 +++++++++++---------
>  3 files changed, 13 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h
> index 271fefb..c7ee696 100644
> --- a/arch/powerpc/include/asm/kvm_host.h
> +++ b/arch/powerpc/include/asm/kvm_host.h
> @@ -184,6 +184,7 @@ struct kvmppc_spapr_tce_table {
>  	struct kvm *kvm;
>  	u64 liobn;
>  	u32 window_size;
> +	struct rcu_head rcu;
>  	struct page *pages[0];
>  };
>  
> diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c
> index 638c6d9..b34220d 100644
> --- a/arch/powerpc/kvm/book3s.c
> +++ b/arch/powerpc/kvm/book3s.c
> @@ -807,7 +807,7 @@ int kvmppc_core_init_vm(struct kvm *kvm)
>  {
>  
>  #ifdef CONFIG_PPC64
> -	INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
> +	INIT_LIST_HEAD_RCU(&kvm->arch.spapr_tce_tables);
>  	INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
>  #endif
>  
> diff --git a/arch/powerpc/kvm/book3s_64_vio.c b/arch/powerpc/kvm/book3s_64_vio.c
> index 54cf9bc..9526c34 100644
> --- a/arch/powerpc/kvm/book3s_64_vio.c
> +++ b/arch/powerpc/kvm/book3s_64_vio.c
> @@ -45,19 +45,16 @@ static long kvmppc_stt_npages(unsigned long window_size)
>  		     * sizeof(u64), PAGE_SIZE) / PAGE_SIZE;
>  }
>  
> -static void release_spapr_tce_table(struct kvmppc_spapr_tce_table *stt)
> +static void release_spapr_tce_table(struct rcu_head *head)
>  {
> -	struct kvm *kvm = stt->kvm;
> +	struct kvmppc_spapr_tce_table *stt = container_of(head,
> +			struct kvmppc_spapr_tce_table, rcu);
>  	int i;
>  
> -	mutex_lock(&kvm->lock);
> -	list_del(&stt->list);
>  	for (i = 0; i < kvmppc_stt_npages(stt->window_size); i++)
>  		__free_page(stt->pages[i]);
> +
>  	kfree(stt);
> -	mutex_unlock(&kvm->lock);
> -
> -	kvm_put_kvm(kvm);
>  }
>  
>  static int kvm_spapr_tce_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
> @@ -88,7 +85,12 @@ static int kvm_spapr_tce_release(struct inode *inode, struct file *filp)
>  {
>  	struct kvmppc_spapr_tce_table *stt = filp->private_data;
>  
> -	release_spapr_tce_table(stt);
> +	list_del_rcu(&stt->list);
> +
> +	kvm_put_kvm(stt->kvm);
> +
> +	call_rcu(&stt->rcu, release_spapr_tce_table);
> +
>  	return 0;
>  }
>  
> @@ -131,7 +133,7 @@ long kvm_vm_ioctl_create_spapr_tce(struct kvm *kvm,
>  	kvm_get_kvm(kvm);
>  
>  	mutex_lock(&kvm->lock);
> -	list_add(&stt->list, &kvm->arch.spapr_tce_tables);
> +	list_add_rcu(&stt->list, &kvm->arch.spapr_tce_tables);
>  
>  	mutex_unlock(&kvm->lock);
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2016-01-24 23:46 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-21  7:39 [PATCH kernel v2 0/6] KVM: PPC: Add in-kernel multitce handling Alexey Kardashevskiy
2016-01-21  7:39 ` Alexey Kardashevskiy
2016-01-21  7:39 ` [PATCH kernel v2 1/6] KVM: PPC: Rework H_PUT_TCE/H_GET_TCE handlers Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-22  0:42   ` David Gibson
2016-01-22  0:42     ` David Gibson
2016-01-22  1:59     ` Alexey Kardashevskiy
2016-01-22  1:59       ` Alexey Kardashevskiy
2016-01-24 23:43       ` David Gibson
2016-01-24 23:43         ` David Gibson
2016-02-11  4:11       ` Paul Mackerras
2016-02-11  4:11         ` Paul Mackerras
2016-01-21  7:39 ` [PATCH kernel v2 2/6] KVM: PPC: Use RCU for arch.spapr_tce_tables Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-24 23:46   ` David Gibson [this message]
2016-01-24 23:46     ` David Gibson
2016-01-21  7:39 ` [PATCH kernel v2 3/6] KVM: PPC: Account TCE-containing pages in locked_vm Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-24 23:57   ` David Gibson
2016-01-24 23:57     ` David Gibson
2016-01-21  7:39 ` [PATCH kernel v2 4/6] KVM: PPC: Replace SPAPR_TCE_SHIFT with IOMMU_PAGE_SHIFT_4K Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-21  7:39 ` [PATCH kernel v2 5/6] KVM: PPC: Move reusable bits of H_PUT_TCE handler to helpers Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-25  0:12   ` David Gibson
2016-01-25  0:12     ` David Gibson
2016-01-25  0:18     ` David Gibson
2016-01-25  0:18       ` David Gibson
2016-02-11  4:39   ` Paul Mackerras
2016-02-11  4:39     ` Paul Mackerras
2016-01-21  7:39 ` [PATCH kernel v2 6/6] KVM: PPC: Add support for multiple-TCE hcalls Alexey Kardashevskiy
2016-01-21  7:39   ` Alexey Kardashevskiy
2016-01-21  7:56   ` kbuild test robot
2016-01-21  7:56     ` kbuild test robot
2016-01-21  8:09     ` Alexey Kardashevskiy
2016-01-21  8:09       ` Alexey Kardashevskiy
2016-01-25  0:44   ` David Gibson
2016-01-25  0:44     ` David Gibson
2016-01-25  1:24     ` Alexey Kardashevskiy
2016-01-25  1:24       ` Alexey Kardashevskiy
2016-01-25  5:21       ` David Gibson
2016-01-25  5:21         ` David Gibson
2016-02-11  5:32   ` Paul Mackerras
2016-02-11  5:32     ` Paul Mackerras
2016-02-12  4:54     ` Alexey Kardashevskiy
2016-02-12  4:54       ` Alexey Kardashevskiy
2016-02-12  5:52       ` Paul Mackerras
2016-02-12  5:52         ` Paul Mackerras

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=20160124234644.GB27454@voom.redhat.com \
    --to=david@gibson.dropbear.id.au \
    --cc=aik@ozlabs.ru \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=paulus@samba.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.