Le 13/06/2020 à 02:41, Fenghua Yu a écrit :
PASID is defined as "int" although it's a 20-bit value and shouldn't be
negative int. To be consistent with type defined in iommu, define PASID
as "unsigned int".


It looks like this patch was considered because of the use of 'pasid' in variable or function names. The ocxl driver only makes sense on powerpc and shouldn't compile on anything else, so it's probably useless in the context of that series. The pasid here is defined by the opencapi specification (https://opencapi.org), it is borrowed from the PCI world and you could argue it could be an unsigned int. But then I think the patch doesn't go far enough. But considering it's not used on x86, I think this patch can be dropped.

  Fred



Suggested-by: Thomas Gleixner <t...@linutronix.de>
Signed-off-by: Fenghua Yu <fenghua...@intel.com>
Reviewed-by: Tony Luck <tony.l...@intel.com>
---
v2:
- Create this new patch to define PASID as "unsigned int" consistently in
   ocxl (Thomas)

  drivers/misc/ocxl/config.c        |  3 ++-
  drivers/misc/ocxl/link.c          |  6 +++---
  drivers/misc/ocxl/ocxl_internal.h |  6 +++---
  drivers/misc/ocxl/pasid.c         |  2 +-
  drivers/misc/ocxl/trace.h         | 20 ++++++++++----------
  include/misc/ocxl.h               |  6 +++---
  6 files changed, 22 insertions(+), 21 deletions(-)

diff --git a/drivers/misc/ocxl/config.c b/drivers/misc/ocxl/config.c
index c8e19bfb5ef9..22d034caed3d 100644
--- a/drivers/misc/ocxl/config.c
+++ b/drivers/misc/ocxl/config.c
@@ -806,7 +806,8 @@ int ocxl_config_set_TL(struct pci_dev *dev, int tl_dvsec)
  }
  EXPORT_SYMBOL_GPL(ocxl_config_set_TL);
-int ocxl_config_terminate_pasid(struct pci_dev *dev, int afu_control, int pasid)
+int ocxl_config_terminate_pasid(struct pci_dev *dev, int afu_control,
+                               unsigned int pasid)
  {
        u32 val;
        unsigned long timeout;
diff --git a/drivers/misc/ocxl/link.c b/drivers/misc/ocxl/link.c
index 58d111afd9f6..931f6ae022db 100644
--- a/drivers/misc/ocxl/link.c
+++ b/drivers/misc/ocxl/link.c
@@ -492,7 +492,7 @@ static u64 calculate_cfg_state(bool kernel)
        return state;
  }
-int ocxl_link_add_pe(void *link_handle, int pasid, u32 pidr, u32 tidr,
+int ocxl_link_add_pe(void *link_handle, unsigned int pasid, u32 pidr, u32 tidr,
                u64 amr, struct mm_struct *mm,
                void (*xsl_err_cb)(void *data, u64 addr, u64 dsisr),
                void *xsl_err_data)
@@ -572,7 +572,7 @@ int ocxl_link_add_pe(void *link_handle, int pasid, u32 
pidr, u32 tidr,
  }
  EXPORT_SYMBOL_GPL(ocxl_link_add_pe);
-int ocxl_link_update_pe(void *link_handle, int pasid, __u16 tid)
+int ocxl_link_update_pe(void *link_handle, unsigned int pasid, __u16 tid)
  {
        struct ocxl_link *link = (struct ocxl_link *) link_handle;
        struct spa *spa = link->spa;
@@ -608,7 +608,7 @@ int ocxl_link_update_pe(void *link_handle, int pasid, __u16 
tid)
        return rc;
  }
-int ocxl_link_remove_pe(void *link_handle, int pasid)
+int ocxl_link_remove_pe(void *link_handle, unsigned int pasid)
  {
        struct ocxl_link *link = (struct ocxl_link *) link_handle;
        struct spa *spa = link->spa;
diff --git a/drivers/misc/ocxl/ocxl_internal.h 
b/drivers/misc/ocxl/ocxl_internal.h
index 345bf843a38e..3ca982ba7472 100644
--- a/drivers/misc/ocxl/ocxl_internal.h
+++ b/drivers/misc/ocxl/ocxl_internal.h
@@ -41,7 +41,7 @@ struct ocxl_afu {
        struct ocxl_afu_config config;
        int pasid_base;
        int pasid_count; /* opened contexts */
-       int pasid_max; /* maximum number of contexts */
+       unsigned int pasid_max; /* maximum number of contexts */
        int actag_base;
        int actag_enabled;
        struct mutex contexts_lock;
@@ -69,7 +69,7 @@ struct ocxl_xsl_error {
struct ocxl_context {
        struct ocxl_afu *afu;
-       int pasid;
+       unsigned int pasid;
        struct mutex status_mutex;
        enum ocxl_context_status status;
        struct address_space *mapping;
@@ -128,7 +128,7 @@ int ocxl_config_check_afu_index(struct pci_dev *dev,
   * pasid: the PASID for the AFU context
   * tid: the new thread id for the process element
   */
-int ocxl_link_update_pe(void *link_handle, int pasid, __u16 tid);
+int ocxl_link_update_pe(void *link_handle, unsigned int pasid, __u16 tid);
int ocxl_context_mmap(struct ocxl_context *ctx,
                        struct vm_area_struct *vma);
diff --git a/drivers/misc/ocxl/pasid.c b/drivers/misc/ocxl/pasid.c
index d14cb56e6920..a151fc8f0bec 100644
--- a/drivers/misc/ocxl/pasid.c
+++ b/drivers/misc/ocxl/pasid.c
@@ -80,7 +80,7 @@ static void range_free(struct list_head *head, u32 start, u32 
size,
int ocxl_pasid_afu_alloc(struct ocxl_fn *fn, u32 size)
  {
-       int max_pasid;
+       unsigned int max_pasid;
if (fn->config.max_pasid_log < 0)
                return -ENOSPC;
diff --git a/drivers/misc/ocxl/trace.h b/drivers/misc/ocxl/trace.h
index 17e21cb2addd..019e2fc63b1d 100644
--- a/drivers/misc/ocxl/trace.h
+++ b/drivers/misc/ocxl/trace.h
@@ -9,13 +9,13 @@
  #include <linux/tracepoint.h>
DECLARE_EVENT_CLASS(ocxl_context,
-       TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr),
+       TP_PROTO(pid_t pid, void *spa, unsigned int pasid, u32 pidr, u32 tidr),
        TP_ARGS(pid, spa, pasid, pidr, tidr),
TP_STRUCT__entry(
                __field(pid_t, pid)
                __field(void*, spa)
-               __field(int, pasid)
+               __field(unsigned int, pasid)
                __field(u32, pidr)
                __field(u32, tidr)
        ),
@@ -38,21 +38,21 @@ DECLARE_EVENT_CLASS(ocxl_context,
  );
DEFINE_EVENT(ocxl_context, ocxl_context_add,
-       TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr),
+       TP_PROTO(pid_t pid, void *spa, unsigned int pasid, u32 pidr, u32 tidr),
        TP_ARGS(pid, spa, pasid, pidr, tidr)
  );
DEFINE_EVENT(ocxl_context, ocxl_context_remove,
-       TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr),
+       TP_PROTO(pid_t pid, void *spa, unsigned int pasid, u32 pidr, u32 tidr),
        TP_ARGS(pid, spa, pasid, pidr, tidr)
  );
TRACE_EVENT(ocxl_terminate_pasid,
-       TP_PROTO(int pasid, int rc),
+       TP_PROTO(unsigned int pasid, int rc),
        TP_ARGS(pasid, rc),
TP_STRUCT__entry(
-               __field(int, pasid)
+               __field(unsigned int, pasid)
                __field(int, rc)
        ),
@@ -107,11 +107,11 @@ DEFINE_EVENT(ocxl_fault_handler, ocxl_fault_ack,
  );
TRACE_EVENT(ocxl_afu_irq_alloc,
-       TP_PROTO(int pasid, int irq_id, unsigned int virq, int hw_irq),
+       TP_PROTO(unsigned int pasid, int irq_id, unsigned int virq, int hw_irq),
        TP_ARGS(pasid, irq_id, virq, hw_irq),
TP_STRUCT__entry(
-               __field(int, pasid)
+               __field(unsigned int, pasid)
                __field(int, irq_id)
                __field(unsigned int, virq)
                __field(int, hw_irq)
@@ -133,11 +133,11 @@ TRACE_EVENT(ocxl_afu_irq_alloc,
  );
TRACE_EVENT(ocxl_afu_irq_free,
-       TP_PROTO(int pasid, int irq_id),
+       TP_PROTO(unsigned int pasid, int irq_id),
        TP_ARGS(pasid, irq_id),
TP_STRUCT__entry(
-               __field(int, pasid)
+               __field(unsigned int, pasid)
                __field(int, irq_id)
        ),
diff --git a/include/misc/ocxl.h b/include/misc/ocxl.h
index 06dd5839e438..5eca04c8da97 100644
--- a/include/misc/ocxl.h
+++ b/include/misc/ocxl.h
@@ -429,7 +429,7 @@ int ocxl_config_set_TL(struct pci_dev *dev, int tl_dvsec);
   * desired AFU. It can be found in the AFU configuration
   */
  int ocxl_config_terminate_pasid(struct pci_dev *dev,
-                               int afu_control_offset, int pasid);
+                               int afu_control_offset, unsigned int pasid);
/*
   * Read the configuration space of a function and fill in a
@@ -466,7 +466,7 @@ void ocxl_link_release(struct pci_dev *dev, void 
*link_handle);
   * 'xsl_err_data' is an argument passed to the above callback, if
   * defined
   */
-int ocxl_link_add_pe(void *link_handle, int pasid, u32 pidr, u32 tidr,
+int ocxl_link_add_pe(void *link_handle, unsigned int pasid, u32 pidr, u32 tidr,
                u64 amr, struct mm_struct *mm,
                void (*xsl_err_cb)(void *data, u64 addr, u64 dsisr),
                void *xsl_err_data);
@@ -474,7 +474,7 @@ int ocxl_link_add_pe(void *link_handle, int pasid, u32 
pidr, u32 tidr,
  /*
   * Remove a Process Element from the Shared Process Area for a link
   */
-int ocxl_link_remove_pe(void *link_handle, int pasid);
+int ocxl_link_remove_pe(void *link_handle, unsigned int pasid);
/*
   * Allocate an AFU interrupt associated to the link.

Reply via email to