Re: [PATCH bpf-next v3 2/3] MIPS: uasm: Add signed div/mod emitters
Nicholas Dudar <[email protected]>
| Newsgroups | org.kernel.vger.linux-mips,org.kernel.vger.bpf,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <CAJZwKkhTTWq2uPSWEMYz6zAPVMtbyGfAyHd97Uv98rYj1YCvFg@mail.gmail.com> |
On Mon, Aug 10, 2026 at 09:05:17PM +0000, [email protected] wrote: > This isn't a bug, but the rewrap of the enum opcode list leaves two lines > considerably shorter than the surrounding ones. Would carrying the > reflow through to maintain consistent line density help keep the diff > tighter? The short lines are where the insertion-induced reflow stops. Filling them would move otherwise unchanged enum entries onto earlier lines and carry the diff farther into the list. Since the resulting lines remain within 80 columns, I prefer to keep the reflow bounded to the new opcode additions. Thanks, Nicholas