linux/include/target/iscsi/iscsi_target_stat.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ISCSI_TARGET_STAT_H
#define ISCSI_TARGET_STAT_H

#include <linux/types.h>
#include <linux/spinlock.h>
#include <linux/socket.h>

/*
 * For struct iscsi_tiqn->tiqn_wwn default groups
 */
extern const struct config_item_type iscsi_stat_instance_cit;
extern const struct config_item_type iscsi_stat_sess_err_cit;
extern const struct config_item_type iscsi_stat_tgt_attr_cit;
extern const struct config_item_type iscsi_stat_login_cit;
extern const struct config_item_type iscsi_stat_logout_cit;

/*
 * For struct iscsi_session->se_sess default groups
 */
extern const struct config_item_type iscsi_stat_sess_cit;

/* iSCSI session error types */
#define ISCSI_SESS_ERR_UNKNOWN
#define ISCSI_SESS_ERR_DIGEST
#define ISCSI_SESS_ERR_CXN_TIMEOUT
#define ISCSI_SESS_ERR_PDU_FORMAT

/* iSCSI session error stats */
struct iscsi_sess_err_stats {} ____cacheline_aligned;

/* iSCSI login failure types (sub oids) */
#define ISCSI_LOGIN_FAIL_OTHER
#define ISCSI_LOGIN_FAIL_REDIRECT
#define ISCSI_LOGIN_FAIL_AUTHORIZE
#define ISCSI_LOGIN_FAIL_AUTHENTICATE
#define ISCSI_LOGIN_FAIL_NEGOTIATE

/* iSCSI login stats */
struct iscsi_login_stats {} ____cacheline_aligned;

/* iSCSI logout stats */
struct iscsi_logout_stats {} ____cacheline_aligned;

#endif   /*** ISCSI_TARGET_STAT_H ***/