SUNRPC: Report TCP errors to the caller
[linux/fpc-iii.git] / tools / perf / util / pstack.c
bloba126e6cc6e73ad8554e21a611b373a25599f5a9a
1 /*
2 * Simple pointer stack
4 * (c) 2010 Arnaldo Carvalho de Melo <acme@redhat.com>
5 */
7 #include "util.h"
8 #include "pstack.h"
9 #include "debug.h"
10 #include <linux/kernel.h>
11 #include <stdlib.h>
13 struct pstack {
14 unsigned short top;
15 unsigned short max_nr_entries;
16 void *entries[0];
19 struct pstack *pstack__new(unsigned short max_nr_entries)
21 struct pstack *pstack = zalloc((sizeof(*pstack) +
22 max_nr_entries * sizeof(void *)));
23 if (pstack != NULL)
24 pstack->max_nr_entries = max_nr_entries;
25 return pstack;
28 void pstack__delete(struct pstack *pstack)
30 free(pstack);
33 bool pstack__empty(const struct pstack *pstack)
35 return pstack->top == 0;
38 void pstack__remove(struct pstack *pstack, void *key)
40 unsigned short i = pstack->top, last_index = pstack->top - 1;
42 while (i-- != 0) {
43 if (pstack->entries[i] == key) {
44 if (i < last_index)
45 memmove(pstack->entries + i,
46 pstack->entries + i + 1,
47 (last_index - i) * sizeof(void *));
48 --pstack->top;
49 return;
52 pr_err("%s: %p not on the pstack!\n", __func__, key);
55 void pstack__push(struct pstack *pstack, void *key)
57 if (pstack->top == pstack->max_nr_entries) {
58 pr_err("%s: top=%d, overflow!\n", __func__, pstack->top);
59 return;
61 pstack->entries[pstack->top++] = key;
64 void *pstack__pop(struct pstack *pstack)
66 void *ret;
68 if (pstack->top == 0) {
69 pr_err("%s: underflow!\n", __func__);
70 return NULL;
73 ret = pstack->entries[--pstack->top];
74 pstack->entries[pstack->top] = NULL;
75 return ret;