Re: [PATCH 21/26] netfs, 9p: Implement helpers for new write code
David Howells wrote: > > + size_t len = subreq->len - subreq->transferred; > > This actually needs to be 'int len' because of the varargs packet formatter. I think the attached change is what's required. David --- diff --git a/net/9p/client.c b/net/9p/client.c index 844aca4fe4d8..04af2a7bf54
Re: [PATCH 21/26] netfs, 9p: Implement helpers for new write code
David Howells wrote: > + size_t len = subreq->len - subreq->transferred; This actually needs to be 'int len' because of the varargs packet formatter. David