Lines Matching defs:filters

3943  * Set the Queue Filters for PE/FCoE and enable filters required
3987 /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
5568 * @seid: VSI seid to add cloud filters from
5569 * @filters: Buffer which contains the filters to be added
5570 * @filter_count: number of filters contained in the buffer
5572 * Set the cloud filters for a given VSI. The contents of the
5579 struct i40e_aqc_cloud_filters_element_data *filters,
5591 buff_len = filter_count * sizeof(*filters);
5597 status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5605 * @seid: VSI seid to add cloud filters from
5606 * @filters: Buffer which contains the filters in big buffer to be added
5607 * @filter_count: number of filters contained in the buffer
5609 * Set the big buffer cloud filters for a given VSI. The contents of the
5616 struct i40e_aqc_cloud_filters_element_bb *filters,
5629 buff_len = filter_count * sizeof(*filters);
5640 tnl_type = le16_get_bits(filters[i].element.flags,
5648 ti = le32_to_cpu(filters[i].element.tenant_id);
5649 filters[i].element.tenant_id = cpu_to_le32(ti << 8);
5653 status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5661 * @seid: VSI seid to remove cloud filters from
5662 * @filters: Buffer which contains the filters to be removed
5663 * @filter_count: number of filters contained in the buffer
5665 * Remove the cloud filters for a given VSI. The contents of the
5672 struct i40e_aqc_cloud_filters_element_data *filters,
5684 buff_len = filter_count * sizeof(*filters);
5690 status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5698 * @seid: VSI seid to remove cloud filters from
5699 * @filters: Buffer which contains the filters in big buffer to be removed
5700 * @filter_count: number of filters contained in the buffer
5702 * Remove the big buffer cloud filters for a given VSI. The contents of the
5709 struct i40e_aqc_cloud_filters_element_bb *filters,
5722 buff_len = filter_count * sizeof(*filters);
5733 tnl_type = le16_get_bits(filters[i].element.flags,
5741 ti = le32_to_cpu(filters[i].element.tenant_id);
5742 filters[i].element.tenant_id = cpu_to_le32(ti << 8);
5746 status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);