On Mon, Jul 15, 2024 at 1:25 AM Arseniy Krasnov <avkrasnov@xxxxxxxxxxxxxxxxx> wrote: > > Hi! Sorry, i was not in cc, so I'll reply in this way :) Ope. I will copy you in the next version. > > +static const struct vsock_transport * > +vsock_dgram_lookup_transport(unsigned int cid, __u8 flags) > +{ > + const struct vsock_transport *transport; > + > + transport = vsock_connectible_lookup_transport(cid, flags); > + if (transport) > + return transport; > + > + return transport_dgram_fallback; > +} > + > ^^^ > > I guess this must be under EXPORT_SYMBOL, because it is called from > virtio_transport_common.c, so module build fails. > > Thanks Right. I will fix it by exporting vsock_dgram_lookup_transport() in patch 7. Thanks! Amery