2015-01-12 19:16, Konstantin Ananyev: > +/* > + * Select highest avaialbe classify method as default one.
Typo here. Actually, I've seen few typos when browsing your big patchset but I don't remember exactly where. Maybe that a tool like codespell could help. [...] > + else if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_SSE4_1)) > +#else > if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_SSE4_1)) > +#endif Minor nit, it could be + else +#endif if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_SSE4_1)) -- Thomas