-/* $OpenBSD: qwx.c,v 1.53 2024/02/29 11:42:31 stsp Exp $ */
+/* $OpenBSD: qwx.c,v 1.54 2024/02/29 11:45:47 stsp Exp $ */
/*
* Copyright 2023 Stefan Sperling <stsp@openbsd.org>
pipe = &sc->ce.ce_pipe[i];
ret = qwx_ce_rx_post_pipe(pipe);
if (ret) {
- if (ret == ENOBUFS)
+ if (ret == ENOSPC)
continue;
printf("%s: failed to post rx buf to pipe: %d err: %d\n",
}
err = qwx_ce_rx_post_pipe(pipe);
- if (err && err != ENOBUFS) {
+ if (err && err != ENOSPC) {
printf("%s: failed to post rx buf to pipe: %d err: %d\n",
__func__, pipe->pipe_num, err);
#ifdef notyet