Lines Matching +full:cell +full:- +full:count
3 * Copyright (c) 2004 - 2013 Broadcom Corporation
12 * Maintained by: QLogic-Storage-Upstream@qlogic.com
18 * bnx2i_dev_to_hba - maps dev pointer to adapter struct
31 * bnx2i_show_sq_info - return(s currently configured send queue (SQ) size
44 return sprintf(buf, "0x%x\n", hba->max_sqes); in bnx2i_show_sq_info()
49 * bnx2i_set_sq_info - update send queue (SQ) size parameter
53 * @count: parameter buffer size
61 const char *buf, size_t count) in bnx2i_set_sq_info() argument
67 if (hba->ofld_conns_active) in bnx2i_set_sq_info()
70 if (test_bit(BNX2I_NX2_DEV_57710, &hba->cnic_dev_type)) in bnx2i_set_sq_info()
78 hba->max_sqes = val; in bnx2i_set_sq_info()
81 return count; in bnx2i_set_sq_info()
90 * bnx2i_show_ccell_info - returns command cell (HQ) size
95 * returns per-connection TCP history queue size parameter
102 return sprintf(buf, "0x%x\n", hba->num_ccell); in bnx2i_show_ccell_info()
107 * bnx2i_set_ccell_info - set command cell (HQ) size
111 * @count: parameter buffer size
113 * updates per-connection TCP history queue size parameter
117 const char *buf, size_t count) in bnx2i_set_ccell_info() argument
122 if (hba->ofld_conns_active) in bnx2i_set_ccell_info()
128 hba->num_ccell = val; in bnx2i_set_ccell_info()
132 return count; in bnx2i_set_ccell_info()