uint i;
for(i = 0; i < 10; i++)
{
- struct lp_state lps;
- lp_save(tmp_linpool, &lps);
+ struct lp_state *lps = lp_save(tmp_linpool);
struct f_tree *random_degenerated_tree = get_random_degenerated_left_tree(nodes_count);
show_tree(random_degenerated_tree);
bt_assert(same_tree(balanced_tree_from_random, expected_balanced_tree));
- lp_restore(tmp_linpool, &lps);
+ lp_restore(tmp_linpool, lps);
}
tmp_flush();
byte *ptr, *end;
struct lp_chunk *first, *current; /* Normal (reusable) chunks */
struct lp_chunk *first_large; /* Large chunks */
+ struct lp_state *initial; /* Initial state to restore to */
uint total, total_large;
};
linpool
*lp_new(pool *p)
{
- return ralloc(p, &lp_class);
+ linpool *m = ralloc(p, &lp_class);
+ m->initial = lp_save(m);
+ return m;
}
/**
void
lp_flush(linpool *m)
{
- ASSERT_DIE(DG_IS_LOCKED(resource_parent(&m->r)->domain));
- struct lp_chunk *c;
-
- /* Move ptr to the first chunk and free all other chunks */
- m->current = c = m->first;
- m->ptr = c ? c->data : NULL;
- m->end = c ? c->data + LP_DATA_SIZE : NULL;
-
- while (c && c->next)
- {
- struct lp_chunk *d = c->next;
- c->next = d->next;
- free_page(d);
- }
-
- while (c = m->first_large)
- {
- m->first_large = c->next;
- xfree(c);
- }
- m->total_large = 0;
+ lp_restore(m, m->initial);
+ m->initial = lp_save(m);
}
/**
* This function saves the state of a linear memory pool. Saved state can be
* used later to restore the pool (to free memory allocated since).
*/
-void
-lp_save(linpool *m, lp_state *p)
+struct lp_state *
+lp_save(linpool *m)
{
ASSERT_DIE(DG_IS_LOCKED(resource_parent(&m->r)->domain));
- p->current = m->current;
- p->large = m->first_large;
- p->total_large = m->total_large;
- p->ptr = m->ptr;
+ struct lp_state *p = lp_alloc(m, sizeof(struct lp_state));
+ ASSERT_DIE(m->current);
+ *p = (struct lp_state) {
+ .current = m->current,
+ .large = m->first_large,
+ .total_large = m->total_large,
+ };
+
+ return p;
}
/**
ASSERT_DIE(DG_IS_LOCKED(resource_parent(&m->r)->domain));
/* Move ptr to the saved pos and free all newer large chunks */
- m->current = c = p->current ?: m->first;
- m->ptr = p->ptr ?: (c ? c->data : NULL);
- m->end = c ? (c->data + LP_DATA_SIZE) : NULL;
+ ASSERT_DIE(p->current);
+ m->current = c = p->current;
+ m->ptr = (byte *) p;
+ m->end = c->data + LP_DATA_SIZE;
m->total_large = p->total_large;
while ((c = m->first_large) && (c != p->large))
xfree(c);
}
- while (m->current && (c = m->current->next))
+ while (c = m->current->next)
{
m->current->next = c->next;
free_page(c);
typedef struct lp_state {
void *current, *large;
- byte *ptr;
uint total_large;
} lp_state;
void *lp_allocu(linpool *, unsigned size); /* Unaligned */
void *lp_allocz(linpool *, unsigned size); /* With clear */
void lp_flush(linpool *); /* Free everything, but leave linpool */
-void lp_save(linpool *m, lp_state *p); /* Save state */
+lp_state *lp_save(linpool *m); /* Save state */
void lp_restore(linpool *m, lp_state *p); /* Restore state */
+#define LP_SAVED(m) for (struct lp_state *_lp_state = lp_save(m); _lp_state; lp_restore(m, _lp_state), _lp_state = NULL)
+#define TMP_SAVED LP_SAVED(tmp_linpool)
+
struct tmp_resources {
pool *pool, *parent;
linpool *lp;
birdloop_flag(tab->loop, RTF_NHU);
return;
}
- lp_state lps;
- lp_save(tmp_linpool, &lps);
- max_feed -= rt_next_hop_update_net(tab, n);
- lp_restore(tmp_linpool, &lps);
+ TMP_SAVED
+ max_feed -= rt_next_hop_update_net(tab, n);
}
FIB_ITERATE_END;
continue;
/* Store the tmp_linpool state to aggresively save memory */
- struct lp_state tmpp;
- lp_save(tmp_linpool, &tmpp);
+ struct lp_state *tmpp = lp_save(tmp_linpool);
/* Mark the route as LLGR */
rte e0 = *r;
irh->stale_set++;
/* Restore the memory state */
- lp_restore(tmp_linpool, &tmpp);
+ lp_restore(tmp_linpool, tmpp);
}
rpe_mark_seen_all(req->hook, first, last, NULL);
struct bgp_bucket *buck;
byte *end = buf + (bgp_max_packet_length(p->conn) - BGP_HEADER_LENGTH);
byte *res = NULL;
+ struct lp_state *tmpp = NULL;
-again: ;
+again:
+ if (tmpp)
+ lp_restore(tmp_linpool, tmpp);
- struct lp_state tmpp;
- lp_save(tmp_linpool, &tmpp);
+ tmpp = lp_save(tmp_linpool);
/* Initialize write state */
struct bgp_write_state s = {
/* Cleanup empty buckets */
if (bgp_done_bucket(c, buck))
- {
- lp_restore(tmp_linpool, &tmpp);
goto again;
- }
res = !s.mp_reach ?
bgp_create_ip_reach(&s, buck, buf, end):
bgp_done_bucket(c, buck);
if (!res)
- {
- lp_restore(tmp_linpool, &tmpp);
goto again;
- }
goto done;
}
/* No more prefixes to send */
+ lp_restore(tmp_linpool, tmpp);
return NULL;
done:
BGP_TRACE_RL(&rl_snd_update, D_PACKETS, "Sending UPDATE");
p->stats.tx_updates++;
- lp_restore(tmp_linpool, &tmpp);
+ lp_restore(tmp_linpool, tmpp);
return res;
}
bgp_start_timer(p, conn->hold_timer, conn->hold_time);
- struct lp_state tmpp;
- lp_save(tmp_linpool, &tmpp);
+ struct lp_state *tmpp = lp_save(tmp_linpool);
/* Initialize parse state */
struct bgp_parse_state s = {
/* Check minimal length */
if (len < 23)
- { bgp_error(conn, 1, 2, pkt+16, 2); return; }
+ {
+ bgp_error(conn, 1, 2, pkt+16, 2);
+ goto done;
+ }
/* Skip fixed header */
uint pos = 19;
done:
rta_free(s.cached_ea);
- lp_restore(tmp_linpool, &tmpp);
+ lp_restore(tmp_linpool, tmpp);
return;
}
proto_notify_state(P, PS_UP);
WALK_LIST(r, cf->routes)
- {
- struct lp_state lps;
- lp_save(tmp_linpool, &lps);
- static_add_rte(p, r);
- lp_restore(tmp_linpool, &lps);
- }
+ TMP_SAVED
+ static_add_rte(p, r);
return PS_UP;
}