mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
ace7f46ba5
The QLogic FastLinQ Driver for iSCSI (qedi) is the iSCSI specific module for 41000 Series Converged Network Adapters by QLogic. This patch consists of following changes: - MAINTAINERS Makefile and Kconfig changes for qedi, - PCI driver registration, - iSCSI host level initialization, - Debugfs and log level infrastructure. The following indiviual changes are merged into this commit: qedi: Add LL2 iSCSI interface for offload iSCSI. qedi: Add support for iSCSI session management. qedi: Add support for data path. Signed-off-by: Nilesh Javali <nilesh.javali@cavium.com> Signed-off-by: Adheer Chandravanshi <adheer.chandravanshi@qlogic.com> Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com> Signed-off-by: Saurav Kashyap <saurav.kashyap@cavium.com> Signed-off-by: Arun Easi <arun.easi@cavium.com> Signed-off-by: Manish Rangankar <manish.rangankar@cavium.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/*
|
|
* QLogic iSCSI Offload Driver
|
|
* Copyright (c) 2016 Cavium Inc.
|
|
*
|
|
* This software is available under the terms of the GNU General Public License
|
|
* (GPL) Version 2, available from the file COPYING in the main directory of
|
|
* this source tree.
|
|
*/
|
|
|
|
#include "qedi.h"
|
|
#include "qedi_gbl.h"
|
|
#include "qedi_iscsi.h"
|
|
#include "qedi_dbg.h"
|
|
|
|
static inline struct qedi_ctx *qedi_dev_to_hba(struct device *dev)
|
|
{
|
|
struct Scsi_Host *shost = class_to_shost(dev);
|
|
|
|
return iscsi_host_priv(shost);
|
|
}
|
|
|
|
static ssize_t qedi_show_port_state(struct device *dev,
|
|
struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct qedi_ctx *qedi = qedi_dev_to_hba(dev);
|
|
|
|
if (atomic_read(&qedi->link_state) == QEDI_LINK_UP)
|
|
return sprintf(buf, "Online\n");
|
|
else
|
|
return sprintf(buf, "Linkdown\n");
|
|
}
|
|
|
|
static ssize_t qedi_show_speed(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct qedi_ctx *qedi = qedi_dev_to_hba(dev);
|
|
struct qed_link_output if_link;
|
|
|
|
qedi_ops->common->get_link(qedi->cdev, &if_link);
|
|
|
|
return sprintf(buf, "%d Gbit\n", if_link.speed / 1000);
|
|
}
|
|
|
|
static DEVICE_ATTR(port_state, 0444, qedi_show_port_state, NULL);
|
|
static DEVICE_ATTR(speed, 0444, qedi_show_speed, NULL);
|
|
|
|
struct device_attribute *qedi_shost_attrs[] = {
|
|
&dev_attr_port_state,
|
|
&dev_attr_speed,
|
|
NULL
|
|
};
|