On Mon, Dec 12, 2016 at 03:22:36PM +0100, Martin Pieuchot wrote:
> @@ -56,15 +56,17 @@ struct bpf_d {
...
> - struct bpf_if * bd_bif; /* interface descriptor */
> + int __in_uiomove;
> +
> + struct bpf_if *bd_bif; /* interface descriptor */If __in_uiomove is a debug trick, write that in a comment. As far as I know, the __ prefix means it is a compiler extension. So prefix the field with bd_ and the comment tells us, we can remove it in a year. otherwise OK bluhm@
