chengzhycn

Results 3 comments of chengzhycn

I met the same situation today when I updated to zsh 5.8. I also used oh-my-zsh and only loaded git plugin in my zshrc but the tab still didn't work...

我们调试发现是 17.11.2 的 pdump 修改了 共享内存内的 rte_eth_dev_data 数据结构,但退出的时候并未初始化修改的值,导致后续启动 pdump 后异常 ``` static struct rte_eth_dev * eth_dev_get(uint16_t port_id) { struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id]; eth_dev->data = &rte_eth_dev_data[port_id]; eth_dev->state = RTE_ETH_DEV_ATTACHED; TAILQ_INIT(&(eth_dev->link_intr_cbs));...

Maybe a little late, we met a same problem like you. I think this is because netlink received a corrupted message, cause library's Receive goroutine returned and closed the routeUpdate...