Details
Details
- Reviewers
dougm
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped - Build Status
Buildable 58808 Build 55695: arc lint + arc unit
Event Timeline
sys/kern/kern_malloc.c | ||
---|---|---|
1140 | Just return size. | |
1141 | If PAGE_SHIFT >= KMEM_ZSHIFT (which is 4), then updating size with KMEM_ZMASK and ZMEM_ZBASE is a no-op. And I imagine that you can assume PAGE_SHIFT >= 4. So you can drop 2 lines here. | |
1141 | This condition is now always false, since PAGE_SHIFT >= KMEM_ZSHIFT. |
sys/kern/kern_malloc.c | ||
---|---|---|
612 | This change uses _size and size for the unaligned and aligned size values. The next patch uses size and asize for those values. Consistency would be good. |