VOER-???: Upgrade prox for DPDK-24.11.2#2
Open
Priyangshu-01 wants to merge 1 commit into
Open
Conversation
3f54662 to
f40c56b
Compare
safiyat
reviewed
Mar 31, 2026
| /* nodelay(scr, TRUE); */ | ||
| noecho(); | ||
|
|
||
| printf("Before Curset\n"); |
Comment on lines
+335
to
+336
| volatile int dummy = 0; | ||
| if (dummy == 0) printf("After Curset"); |
| delwin(win_tabs); | ||
| delwin(win_cmd); | ||
| delwin(win_txt); | ||
| //delwin(win_txt); |
| new_mbufs[idx] = task->queue[task->queue_tail].mbuf; | ||
| PREFETCH0(new_mbufs[idx]); | ||
| PREFETCH0(&new_mbufs[idx]->cacheline1); | ||
| PREFETCH0(RTE_PTR_ADD(new_mbufs[idx], RTE_CACHE_LINE_MIN_SIZE)); |
Comment on lines
+472
to
+473
| rte_memcpy(&pip6->dst_addr, &tun_dest->dst_addr, sizeof(pip6->dst_addr)); | ||
| rte_memcpy(&pip6->src_addr, &ptask->local_endpoint_addr, sizeof(pip6->src_addr)); |
Member
There was a problem hiding this comment.
That does not seem right! Source of this change in DPDK?
Comment on lines
+709
to
+714
| printf("port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len: %u\n", port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len); | ||
| port_cfg->port_conf.rx_adv_conf.rss_conf.rss_hf &= port_cfg->dev_info.flow_type_rss_offloads; | ||
| printf("port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len: %u\n", port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len); | ||
| #endif | ||
| if (strcmp(port_cfg->short_name, "virtio")) { | ||
| printf("port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len: %u\n", port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len); |
| port_cfg->port_conf.rxmode.mq_mode |= RTE_ETH_MQ_RX_RSS; | ||
| port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key = toeplitz_init_key; | ||
| port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len = TOEPLITZ_KEY_LEN; | ||
| port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len= port_cfg->dev_info.hash_key_size; |
Comment on lines
+684
to
+687
| for (int i = 0; i < TOEPLITZ_KEY_LEN_52; i++) { | ||
| printf("%02x ", toeplitz_init_key_52[i]); | ||
| if ((i + 1) % 8 == 0) printf("\n"); | ||
| } |
Comment on lines
+691
to
+694
| for (int i = 0; i < TOEPLITZ_KEY_LEN; i++) { | ||
| printf("%02x ", toeplitz_init_key[i]); | ||
| if ((i + 1) % 8 == 0) printf("\n"); | ||
| } |
| } | ||
| } | ||
|
|
||
| printf("port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len: %u\n", port_cfg->port_conf.rx_adv_conf.rss_conf.rss_key_len); |
f40c56b to
56c1ffa
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.