mirror of
https://github.com/urbit/ares.git
synced 2024-11-22 15:08:54 +03:00
pma: partition striping wip
This commit is contained in:
parent
f4a6790d12
commit
8a04934515
@ -1071,6 +1071,7 @@ _mlist_insert(BT_state *state, void *lo, void *hi)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ;;: i think this chunk can replace the below "found end of list" chunk */
|
||||||
/* otherwise, insert discontinuous node */
|
/* otherwise, insert discontinuous node */
|
||||||
BT_mlistnode *new = calloc(1, sizeof *new);
|
BT_mlistnode *new = calloc(1, sizeof *new);
|
||||||
new->lo = lob;
|
new->lo = lob;
|
||||||
@ -1129,15 +1130,14 @@ _nlist_insert2(BT_state *state, BT_nlistnode **dst, BT_page *lo, BT_page *hi)
|
|||||||
dst = &(*dst)->next;
|
dst = &(*dst)->next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* otherwise, insert discontinuous node */
|
|
||||||
BT_nlistnode *new = calloc(1, sizeof *new);
|
|
||||||
new->lo = lo;
|
|
||||||
new->hi = hi;
|
|
||||||
new->next = *dst;
|
|
||||||
*dst = new;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* otherwise, insert discontinuous node */
|
||||||
|
BT_nlistnode *new = calloc(1, sizeof *new);
|
||||||
|
new->lo = lo;
|
||||||
|
new->hi = hi;
|
||||||
|
new->next = *dst;
|
||||||
|
*dst = new;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -1211,14 +1211,6 @@ _flist_insert(BT_flistnode **dst, pgno_t lo, pgno_t hi)
|
|||||||
dst = &(*dst)->next;
|
dst = &(*dst)->next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* otherwise, insert discontinuous node */
|
|
||||||
BT_flistnode *new = calloc(1, sizeof *new);
|
|
||||||
new->lo = lo;
|
|
||||||
new->hi = hi;
|
|
||||||
new->next = *dst;
|
|
||||||
*dst = new;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* otherwise, insert discontinuous node */
|
/* otherwise, insert discontinuous node */
|
||||||
|
Loading…
Reference in New Issue
Block a user