FreeBSD Bugzilla – Attachment 199877 Details for
Bug 233818
With RSS enabled, the kernel build fails due to the ixl driver.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Quick fix for the issue.
diff_if_iavf.c (text/plain), 952 bytes, created by
Arun Pereira
on 2018-12-06 00:24:32 UTC
(
hide
)
Description:
Quick fix for the issue.
Filename:
MIME Type:
Creator:
Arun Pereira
Created:
2018-12-06 00:24:32 UTC
Size:
952 bytes
patch
obsolete
>index 632b5a52fed..2c1db81ec7f 100644 >--- a/sys/dev/ixl/if_iavf.c >+++ b/usr/src/sys/dev/ixl/if_iavf.c >@@ -1947,10 +1947,10 @@ iavf_config_rss_reg(struct iavf_sc *sc) > /* > * Fetch the RSS bucket id for the given indirection entry. > * Cap it at the number of configured buckets (which is >- * num_queues.) >+ * num_rx_queues.) > */ > que_id = rss_get_indirection_to_bucket(i); >- que_id = que_id % vsi->num_queues; >+ que_id = que_id % vsi->num_rx_queues; > #else > que_id = j; > #endif >root@agnios6-buildserver:~build/freebsd # diff sys/dev/ixl/if_iavf.c /usr/src/sys/dev/ixl/if_iavf.c >1950c1950 >< * num_queues.) >--- >> * num_rx_queues.) >1953c1953 >< que_id = que_id % vsi->num_queues; >--- >> que_id = que_id % vsi->num_rx_queues;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 233818
:
199877
|
199878