What's the RSS filter function?

守給你的承諾、 提交于 2020-12-15 05:15:01

问题


I'm looking some doc about RSS filter funciton. NIC is Intel I210 and driver is e1000. I found some functions about RSS filter. Like:

eth_igb_start => igb_filter_restore => igb_rss_filter_restore => igb_config_rss_filter

igb_config_rss_filter will write RSS configure(rss reta, rss key and rss protocol) to NIC register.

My question is what's the different between igb_config_rss_filter and igb_rss_configure? Can you share some doc about DPDK filter?

Thanks


回答1:


igb_config_rss_filter is used by the flow filter function. For example, if you create a flow filter rule, this function will be invoked.

igb_rss_configure is used to config RSS function.



来源:https://stackoverflow.com/questions/64966952/whats-the-rss-filter-function

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!