Re: [PATCH] accel/qaic: Update MAX_ORDER use to be inclusive

2023-11-17 Thread Jeffrey Hugo
On 11/3/2023 9:33 AM, Jeffrey Hugo wrote: MAX_ORDER was redefined so that valid allocations to the page allocator are in the range of 0..MAX_ORDER, inclusive in the commit 23baf831a32c ("mm, treewide: redefine MAX_ORDER sanely"). We are treating MAX_ORDER as an exclusive value, and thus could

Re: [PATCH] accel/qaic: Update MAX_ORDER use to be inclusive

2023-11-05 Thread Jacek Lawrynowicz
On 03.11.2023 16:33, Jeffrey Hugo wrote: > MAX_ORDER was redefined so that valid allocations to the page allocator > are in the range of 0..MAX_ORDER, inclusive in the commit > 23baf831a32c ("mm, treewide: redefine MAX_ORDER sanely"). > > We are treating MAX_ORDER as an exclusive value, and thus

[PATCH] accel/qaic: Update MAX_ORDER use to be inclusive

2023-11-03 Thread Jeffrey Hugo
MAX_ORDER was redefined so that valid allocations to the page allocator are in the range of 0..MAX_ORDER, inclusive in the commit 23baf831a32c ("mm, treewide: redefine MAX_ORDER sanely"). We are treating MAX_ORDER as an exclusive value, and thus could be requesting larger allocations. Update our