Thanks Pavel for this work. This is what we think is the better implementation for eventfd proxy, in our last review. Could you add an additional patch to remove the old implementation?
Again, please run checkpatch.pl against your patch. On 8/29/2015 2:51 AM, Pavel Boldin wrote: [...] > + > +int > +eventfd_init(void) > +{ > + if (eventfd_link > 0) 0 could be valid fd. Change it to: if (eventfd_link >= 0) Change elsewhere if i miss it. > +int > +eventfd_free(void) > +{ > + if (eventfd_link > 0) same as above: if (eventfd_link >= 0) [...]