1 /* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
20 #include <sys/types.h>
21 #include <asm/system.h>
27 #include <osmocom/core/msgb.h>
32 /* This is a poor mans static allocator for msgb objects */
33 #define MSGB_DATA_SIZE 256+4
38 uint8_t buf
[MSGB_DATA_SIZE
];
40 static struct supermsg msgs
[MSGB_NUM
];
41 void *_talloc_zero(void *ctx
, unsigned int size
, const char *name
)
46 local_firq_save(flags
);
48 if (size
> sizeof(struct msgb
) + MSGB_DATA_SIZE
)
51 for (i
= 0; i
< ARRAY_SIZE(msgs
); i
++) {
52 if (!msgs
[i
].allocated
) {
53 msgs
[i
].allocated
= 1;
54 memset(&msgs
[i
].msg
, 0, sizeof(msgs
[i
].msg
));
55 memset(&msgs
[i
].buf
, 0, sizeof(msgs
[i
].buf
));
56 local_irq_restore(flags
);
62 cons_puts("unable to allocate msgb\n");
65 return NULL
; /* not reached */
67 void talloc_free(void *msg
)
69 struct supermsg
*smsg
= container_of(msg
, struct supermsg
, msg
);
70 /* no locking required, since this is atomic */