linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] iommu: Two minor cleanups for v5.16
@ 2021-11-23 10:55 Joerg Roedel
  2021-11-23 10:55 ` [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED Joerg Roedel
  2021-11-23 10:55 ` [PATCH 2/2] iommu/amd: Clarify AMD IOMMUv2 initialization messages Joerg Roedel
  0 siblings, 2 replies; 4+ messages in thread
From: Joerg Roedel @ 2021-11-23 10:55 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Will Deacon, Suravee Suthikulpanit, x86, Lu Baolu, linux-kernel,
	iommu, Joerg Roedel

From: Joerg Roedel <jroedel@suse.de>

Hi,

here are two minor cleanups in the IOMMU code for v5.16. If there are
no objections I will sent them upstream this week.

Regards,

	Joerg

Joerg Roedel (2):
  iommu/vt-d: Remove unused PASID_DISABLED
  iommu/amd: Clarify AMD IOMMUv2 initialization messages

 arch/x86/include/asm/fpu/api.h | 6 ------
 drivers/iommu/amd/iommu_v2.c   | 6 +++---
 2 files changed, 3 insertions(+), 9 deletions(-)

-- 
2.33.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED
  2021-11-23 10:55 [PATCH 0/2] iommu: Two minor cleanups for v5.16 Joerg Roedel
@ 2021-11-23 10:55 ` Joerg Roedel
  2021-11-23 11:11   ` Lu Baolu
  2021-11-23 10:55 ` [PATCH 2/2] iommu/amd: Clarify AMD IOMMUv2 initialization messages Joerg Roedel
  1 sibling, 1 reply; 4+ messages in thread
From: Joerg Roedel @ 2021-11-23 10:55 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Will Deacon, Suravee Suthikulpanit, x86, Lu Baolu, linux-kernel,
	iommu, Joerg Roedel, Linus Torvalds

From: Joerg Roedel <jroedel@suse.de>

The macro is unused after commit 00ecd5401349a so it can be removed.

Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Fixes: 00ecd5401349a ("iommu/vt-d: Clean up unused PASID updating functions")
Signed-off-by: Joerg Roedel <jroedel@suse.de>
---
 arch/x86/include/asm/fpu/api.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/arch/x86/include/asm/fpu/api.h b/arch/x86/include/asm/fpu/api.h
index 6053674f9132..c2767a6a387e 100644
--- a/arch/x86/include/asm/fpu/api.h
+++ b/arch/x86/include/asm/fpu/api.h
@@ -102,12 +102,6 @@ extern void switch_fpu_return(void);
  */
 extern int cpu_has_xfeatures(u64 xfeatures_mask, const char **feature_name);
 
-/*
- * Tasks that are not using SVA have mm->pasid set to zero to note that they
- * will not have the valid bit set in MSR_IA32_PASID while they are running.
- */
-#define PASID_DISABLED	0
-
 /* Trap handling */
 extern int  fpu__exception_code(struct fpu *fpu, int trap_nr);
 extern void fpu_sync_fpstate(struct fpu *fpu);
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] iommu/amd: Clarify AMD IOMMUv2 initialization messages
  2021-11-23 10:55 [PATCH 0/2] iommu: Two minor cleanups for v5.16 Joerg Roedel
  2021-11-23 10:55 ` [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED Joerg Roedel
@ 2021-11-23 10:55 ` Joerg Roedel
  1 sibling, 0 replies; 4+ messages in thread
From: Joerg Roedel @ 2021-11-23 10:55 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Will Deacon, Suravee Suthikulpanit, x86, Lu Baolu, linux-kernel,
	iommu, Joerg Roedel, stable

From: Joerg Roedel <jroedel@suse.de>

The messages printed on the initialization of the AMD IOMMUv2 driver
have caused some confusion in the past. Clarify the messages to lower
the confusion in the future.

Cc: stable@vger.kernel.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
---
 drivers/iommu/amd/iommu_v2.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/iommu/amd/iommu_v2.c b/drivers/iommu/amd/iommu_v2.c
index 13cbeb997cc1..58da08cc3d01 100644
--- a/drivers/iommu/amd/iommu_v2.c
+++ b/drivers/iommu/amd/iommu_v2.c
@@ -929,10 +929,8 @@ static int __init amd_iommu_v2_init(void)
 {
 	int ret;
 
-	pr_info("AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>\n");
-
 	if (!amd_iommu_v2_supported()) {
-		pr_info("AMD IOMMUv2 functionality not available on this system\n");
+		pr_info("AMD IOMMUv2 functionality not available on this system - This is not a bug.\n");
 		/*
 		 * Load anyway to provide the symbols to other modules
 		 * which may use AMD IOMMUv2 optionally.
@@ -947,6 +945,8 @@ static int __init amd_iommu_v2_init(void)
 
 	amd_iommu_register_ppr_notifier(&ppr_nb);
 
+	pr_info("AMD IOMMUv2 loaded and initialized\n");
+
 	return 0;
 
 out:
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED
  2021-11-23 10:55 ` [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED Joerg Roedel
@ 2021-11-23 11:11   ` Lu Baolu
  0 siblings, 0 replies; 4+ messages in thread
From: Lu Baolu @ 2021-11-23 11:11 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: baolu.lu, Will Deacon, Suravee Suthikulpanit, x86, linux-kernel,
	iommu, Joerg Roedel, Linus Torvalds

On 2021/11/23 18:55, Joerg Roedel wrote:
> From: Joerg Roedel <jroedel@suse.de>
> 
> The macro is unused after commit 00ecd5401349a so it can be removed.
> 
> Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
> Fixes: 00ecd5401349a ("iommu/vt-d: Clean up unused PASID updating functions")

Reviewed-by: Lu Baolu <baolu.lu@linux.intel.com>

Best regards,
baolu

> Signed-off-by: Joerg Roedel <jroedel@suse.de>
> ---
>   arch/x86/include/asm/fpu/api.h | 6 ------
>   1 file changed, 6 deletions(-)
> 
> diff --git a/arch/x86/include/asm/fpu/api.h b/arch/x86/include/asm/fpu/api.h
> index 6053674f9132..c2767a6a387e 100644
> --- a/arch/x86/include/asm/fpu/api.h
> +++ b/arch/x86/include/asm/fpu/api.h
> @@ -102,12 +102,6 @@ extern void switch_fpu_return(void);
>    */
>   extern int cpu_has_xfeatures(u64 xfeatures_mask, const char **feature_name);
>   
> -/*
> - * Tasks that are not using SVA have mm->pasid set to zero to note that they
> - * will not have the valid bit set in MSR_IA32_PASID while they are running.
> - */
> -#define PASID_DISABLED	0
> -
>   /* Trap handling */
>   extern int  fpu__exception_code(struct fpu *fpu, int trap_nr);
>   extern void fpu_sync_fpstate(struct fpu *fpu);
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-11-23 11:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-23 10:55 [PATCH 0/2] iommu: Two minor cleanups for v5.16 Joerg Roedel
2021-11-23 10:55 ` [PATCH 1/2] iommu/vt-d: Remove unused PASID_DISABLED Joerg Roedel
2021-11-23 11:11   ` Lu Baolu
2021-11-23 10:55 ` [PATCH 2/2] iommu/amd: Clarify AMD IOMMUv2 initialization messages Joerg Roedel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).