On Mon, May 23, 2022 at 08:45:06AM +0000, Starke, Daniel wrote: > > > +/** > > > + * gsm_dlci_wait_open - wait for channel open procedure > > > + * @dlci: DLCI to open > > > + * > > > + * Wait for a DLCI opening from the other side. Asynchronously wait until > > > + * we get a SABM and set off timers and the responses. > > > + */ > > > +static void gsm_dlci_wait_open(struct gsm_dlci *dlci) { > > > + switch (dlci->state) { > > > + case DLCI_CLOSED: > > > + case DLCI_CLOSING: > > > + dlci->state = DLCI_OPENING; > > > + break; > > > + default: > > > + break; > > > + } > > > +} > > > > The documentation for this function is odd, you are not waiting for > > anything. You are just changing the state. This makes no sense as-is, > > sorry. > > Thank you for your comment. I have prepared a new version. I will send it > after the other 8 patches have been commented. No, please fix up and resend the series, it is long gone from my review queue. thanks, greg k-h