Displaying 1 result from an estimated 1 matches for "0gib".
Did you mean:
0gb
2013 Aug 07
1
[PATCH] drm/nouveau: mark last megabyte as usable
...#39;s no holes */
if (uniform) {
offset = rsvd_head;
- length = (ram->size >> 12) - rsvd_head - rsvd_tail;
+ length = (ram->size >> 12) - rsvd_head;
ret = nouveau_mm_init(&pfb->vram, offset, length, 1);
} else {
/* otherwise, address lowest common amount from 0GiB */
@@ -167,7 +166,7 @@ nvc0_ram_create(struct nouveau_object *parent, struct nouveau_object *engine,
/* and the rest starting from (8GiB + common_size) */
offset = (0x0200000000ULL >> 12) + (bsize << 8);
- length = (ram->size >> 12) - (bsize << 8) - rsvd_tail;
+...