-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable OF-compatible queue handling #79
base: master
Are you sure you want to change the base?
Conversation
eugene-che
commented
Apr 27, 2016
- Remove the restriction on queue ids
- now it is possible to create queues with the same id at different ports;
- Fix qos scheduler initialization:
- add a more rigorous checks for shaping parameters;
- rollback to previos scheduler config on errors;
- map queues to DPDK scheduler to enable PQ;
- Enable queue scheduling for each transmitted packet;
- Add support for queue_config and queue_stats openflow requests;
- Change DPDK build options to enable qos scheduler statistics.
- Remove the restriction on queue ids - now it is possible to create queues with the same id at different ports; - Fix qos scheduler initialization: - add a more rigorous checks for shaping parameters; - rollback to previos scheduler config on errors; - map queues to DPDK scheduler to enable PQ; - Enable queue scheduling for each transmitted packet; - Add support for queue_config and queue_stats openflow requests; - Change DPDK build options to enable qos scheduler statistics.
@@ -81,6 +81,7 @@ edit_dpdk_config CONFIG_RTE_LIBRTE_PMD_PCAP=n $NEWCONFIG | |||
edit_dpdk_config CONFIG_RTE_APP_TEST=n $NEWCONFIG | |||
edit_dpdk_config CONFIG_RTE_TEST_PMD=n $NEWCONFIG | |||
edit_dpdk_config CONFIG_RTE_IXGBE_INC_VECTOR=n $NEWCONFIG | |||
eidt_dpdk_config CONFIG_RTE_SCHED_COLLECT_STATS=y $NEWCONFIG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix a typo eidt -> edit
Hi @eugene-che Thank you for queue improvement pull request.
The following make option is very useful for checking the syntax and make code more beautiful with our coding style.
thanks! |
Hi @ynkjm Thanks for the review! |
Hi @eugene-che Thanks you for your modification. |
Hi @eugene-che We have checked your patch in our lab. We found some unit test errors. |