You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functions like inline size_t roundup(size_t a, size_t b) { return ((a + b - 1) / b) * b; } are used through-out the experimental kernels codebase. These should be consolidated into one utility function.
The text was updated successfully, but these errors were encountered:
Functions like
inline size_t roundup(size_t a, size_t b) { return ((a + b - 1) / b) * b; }
are used through-out the experimental kernels codebase. These should be consolidated into one utility function.The text was updated successfully, but these errors were encountered: