rx_fhash         1180 drivers/net/ethernet/qlogic/qlcnic/qlcnic.h 	struct qlcnic_filter_hash rx_fhash;
rx_fhash          662 drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c 	for (i = 0; i < adapter->rx_fhash.fbucket_size; i++) {
rx_fhash          663 drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c 		head = &(adapter->rx_fhash.fhead[i]);
rx_fhash          670 drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c 				adapter->rx_fhash.fnum--;
rx_fhash          172 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c 		adapter->rx_fhash.fnum--;
rx_fhash          210 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c 		if (adapter->rx_fhash.fnum >= adapter->rx_fhash.fmax)
rx_fhash          213 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c 		head = &(adapter->rx_fhash.fhead[hindex]);
rx_fhash          232 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c 		adapter->rx_fhash.fnum++;
rx_fhash          257 drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c 		head = &adapter->rx_fhash.fhead[hindex];
rx_fhash         2924 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	adapter->rx_fhash.fbucket_size = adapter->fhash.fbucket_size;
rx_fhash         2926 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	head = kcalloc(adapter->rx_fhash.fbucket_size,
rx_fhash         2932 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	adapter->rx_fhash.fmax = (filter_size / act_pci_func);
rx_fhash         2933 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	adapter->rx_fhash.fhead = head;
rx_fhash         2935 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	for (i = 0; i < adapter->rx_fhash.fbucket_size; i++)
rx_fhash         2936 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 		INIT_HLIST_HEAD(&adapter->rx_fhash.fhead[i]);
rx_fhash         2947 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	if (adapter->rx_fhash.fmax)
rx_fhash         2948 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 		kfree(adapter->rx_fhash.fhead);
rx_fhash         2950 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	adapter->rx_fhash.fmax = 0;
rx_fhash         2951 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c 	adapter->rx_fhash.fhead = NULL;