.. | .. |
---|
39 | 39 | |
---|
40 | 40 | #define DRV_NAME "fnic" |
---|
41 | 41 | #define DRV_DESCRIPTION "Cisco FCoE HBA Driver" |
---|
42 | | -#define DRV_VERSION "1.6.0.34" |
---|
| 42 | +#define DRV_VERSION "1.6.0.47" |
---|
43 | 43 | #define PFX DRV_NAME ": " |
---|
44 | 44 | #define DFX DRV_NAME "%d: " |
---|
45 | 45 | |
---|
.. | .. |
---|
49 | 49 | #define FNIC_MAX_IO_REQ 1024 /* scsi_cmnd tag map entries */ |
---|
50 | 50 | #define FNIC_DFLT_IO_REQ 256 /* Default scsi_cmnd tag map entries */ |
---|
51 | 51 | #define FNIC_IO_LOCKS 64 /* IO locks: power of 2 */ |
---|
52 | | -#define FNIC_DFLT_QUEUE_DEPTH 32 |
---|
| 52 | +#define FNIC_DFLT_QUEUE_DEPTH 256 |
---|
53 | 53 | #define FNIC_STATS_RATE_LIMIT 4 /* limit rate at which stats are pulled up */ |
---|
54 | 54 | |
---|
55 | 55 | /* |
---|
.. | .. |
---|
128 | 128 | __fnic_set_state_flags(fnicp, st_flags, 1) |
---|
129 | 129 | |
---|
130 | 130 | extern unsigned int fnic_log_level; |
---|
| 131 | +extern unsigned int io_completions; |
---|
131 | 132 | |
---|
132 | 133 | #define FNIC_MAIN_LOGGING 0x01 |
---|
133 | 134 | #define FNIC_FCS_LOGGING 0x02 |
---|
.. | .. |
---|
196 | 197 | #define FNIC_WQ_MAX 1 |
---|
197 | 198 | #define FNIC_RQ_MAX 1 |
---|
198 | 199 | #define FNIC_CQ_MAX (FNIC_WQ_COPY_MAX + FNIC_WQ_MAX + FNIC_RQ_MAX) |
---|
| 200 | +#define FNIC_DFLT_IO_COMPLETIONS 256 |
---|
199 | 201 | |
---|
200 | 202 | struct mempool; |
---|
201 | 203 | |
---|