On Fri, Nov 30, 2018 at 03:03:44PM -0500, Olga Kornievskaia wrote: > + /** > + * For now, only return one server address in cpn_src, the > + * address used by the client to connect to this server. > + */ Could you check your code for any places where you use /** as the beginning of a comment? The usual style is just /*, and /** is reserved for specially-formatted comments meant to be extracted into automatically-generated API documentation, so I think the above might confuse kernel-doc. (See Documentation/doc-guide/kernel-doc.rst.) --b.