提交 b534875d 编写于 作者: D Dennis Dalessandro 提交者: Doug Ledford

IB/rdmavt: Add device specific info prints

Follow hfi1's example for printing information about the driver and
incorporate into rdmavt. This requires two new functions to be
provided by the driver, one to get_card_name and one to get_pci_dev.
Reviewed-by: NMike Marciniszyn <mike.marciniszyn@intel.com>
Reviewed-by: NIra Weiny <ira.weiny@intel.com>
Signed-off-by: NDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: NDoug Ledford <dledford@redhat.com>
上级 aec57787
...@@ -213,9 +213,18 @@ static int rvt_get_port_immutable(struct ib_device *ibdev, u8 port_num, ...@@ -213,9 +213,18 @@ static int rvt_get_port_immutable(struct ib_device *ibdev, u8 port_num,
int rvt_register_device(struct rvt_dev_info *rdi) int rvt_register_device(struct rvt_dev_info *rdi)
{ {
/* Validate that drivers have provided the right information */
if (!rdi) if (!rdi)
return -EINVAL; return -EINVAL;
if ((!rdi->driver_f.port_callback) ||
(!rdi->driver_f.get_card_name) ||
(!rdi->driver_f.get_pci_dev)) {
return -EINVAL;
}
/* Once we get past here we can use the rvt_pr macros */
/* Dev Ops */ /* Dev Ops */
CHECK_DRIVER_OVERRIDE(rdi, query_device); CHECK_DRIVER_OVERRIDE(rdi, query_device);
CHECK_DRIVER_OVERRIDE(rdi, modify_device); CHECK_DRIVER_OVERRIDE(rdi, modify_device);
...@@ -280,9 +289,7 @@ int rvt_register_device(struct rvt_dev_info *rdi) ...@@ -280,9 +289,7 @@ int rvt_register_device(struct rvt_dev_info *rdi)
spin_lock_init(&rdi->n_pds_lock); spin_lock_init(&rdi->n_pds_lock);
rdi->n_pds_allocated = 0; rdi->n_pds_allocated = 0;
/* Validate that drivers have provided the right functions */ rvt_pr_info(rdi, "Registration with rdmavt done.\n");
if (!rdi->driver_f.port_callback)
return -EINVAL;
/* We are now good to announce we exist */ /* We are now good to announce we exist */
return ib_register_device(&rdi->ibdev, rdi->driver_f.port_callback); return ib_register_device(&rdi->ibdev, rdi->driver_f.port_callback);
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
*/ */
#include <rdma/rdma_vt.h> #include <rdma/rdma_vt.h>
#include <linux/pci.h>
#include "dma.h" #include "dma.h"
#include "pd.h" #include "pd.h"
#include "qp.h" #include "qp.h"
...@@ -59,4 +60,31 @@ ...@@ -59,4 +60,31 @@
#include "mmap.h" #include "mmap.h"
#include "cq.h" #include "cq.h"
#define rvt_pr_info(rdi, fmt, ...) \
__rvt_pr_info(rdi->driver_f.get_pci_dev(rdi), \
rdi->driver_f.get_card_name(rdi), \
fmt, \
##__VA_ARGS__)
#define rvt_pr_warn(rdi, fmt, ...) \
__rvt_pr_warn(rdi->driver_f.get_pci_dev(rdi), \
rdi->driver_f.get_card_name(rdi), \
fmt, \
##__VA_ARGS__)
#define rvt_pr_err(rdi, fmt, ...) \
__rvt_pr_err(rdi->driver_f.get_pci_dev(rdi), \
rdi->driver_f.get_card_name(rdi), \
fmt, \
##__VA_ARGS__)
#define __rvt_pr_info(pdev, name, fmt, ...) \
dev_info(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
#define __rvt_pr_warn(pdev, name, fmt, ...) \
dev_warn(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
#define __rvt_pr_err(pdev, name, fmt, ...) \
dev_err(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
#endif /* DEF_RDMAVT_H */ #endif /* DEF_RDMAVT_H */
...@@ -386,6 +386,7 @@ struct rvt_driver_params { ...@@ -386,6 +386,7 @@ struct rvt_driver_params {
/* /*
* Functions that drivers are required to support * Functions that drivers are required to support
*/ */
struct rvt_dev_info;
struct rvt_driver_provided { struct rvt_driver_provided {
/* /*
* The work to create port files in /sys/class Infiniband is different * The work to create port files in /sys/class Infiniband is different
...@@ -394,6 +395,8 @@ struct rvt_driver_provided { ...@@ -394,6 +395,8 @@ struct rvt_driver_provided {
* this. * this.
*/ */
int (*port_callback)(struct ib_device *, u8, struct kobject *); int (*port_callback)(struct ib_device *, u8, struct kobject *);
const char * (*get_card_name)(struct rvt_dev_info *rdi);
struct pci_dev * (*get_pci_dev)(struct rvt_dev_info *rdi);
}; };
/* Protection domain */ /* Protection domain */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册