mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
dfb99b050e
Based on the normalized pattern: this program is free software you may redistribute it and/or modify it under the terms of the gnu general public license as published by the free software foundation version 2 of the license the software is provided as is without warranty of any kind express or implied including but not limited to the warranties of merchantability fitness for a particular purpose and noninfringement in no event shall the authors or copyright holders be liable for any claim damages or other liability whether in an action of contract tort or otherwise arising from out of or in connection with the software or the use or other dealings in the software extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
41 lines
1.0 KiB
C
41 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright 2014 Cisco Systems, Inc. All rights reserved. */
|
|
|
|
#ifndef _VNIC_SNIC_H_
|
|
#define _VNIC_SNIC_H_
|
|
|
|
#define VNIC_SNIC_WQ_DESCS_MIN 64
|
|
#define VNIC_SNIC_WQ_DESCS_MAX 1024
|
|
|
|
#define VNIC_SNIC_MAXDATAFIELDSIZE_MIN 256
|
|
#define VNIC_SNIC_MAXDATAFIELDSIZE_MAX 2112
|
|
|
|
#define VNIC_SNIC_IO_THROTTLE_COUNT_MIN 1
|
|
#define VNIC_SNIC_IO_THROTTLE_COUNT_MAX 1024
|
|
|
|
#define VNIC_SNIC_PORT_DOWN_TIMEOUT_MIN 0
|
|
#define VNIC_SNIC_PORT_DOWN_TIMEOUT_MAX 240000
|
|
|
|
#define VNIC_SNIC_PORT_DOWN_IO_RETRIES_MIN 0
|
|
#define VNIC_SNIC_PORT_DOWN_IO_RETRIES_MAX 255
|
|
|
|
#define VNIC_SNIC_LUNS_PER_TARGET_MIN 1
|
|
#define VNIC_SNIC_LUNS_PER_TARGET_MAX 1024
|
|
|
|
/* Device-specific region: scsi configuration */
|
|
struct vnic_snic_config {
|
|
u32 flags;
|
|
u32 wq_enet_desc_count;
|
|
u32 io_throttle_count;
|
|
u32 port_down_timeout;
|
|
u32 port_down_io_retries;
|
|
u32 luns_per_tgt;
|
|
u16 maxdatafieldsize;
|
|
u16 intr_timer;
|
|
u8 intr_timer_type;
|
|
u8 _resvd2;
|
|
u8 xpt_type;
|
|
u8 hid;
|
|
};
|
|
#endif /* _VNIC_SNIC_H_ */
|