summaryrefslogtreecommitdiff
path: root/xpp
diff options
context:
space:
mode:
authortzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-03-01 19:29:12 +0000
committertzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-03-01 19:29:12 +0000
commite63d8603b384e5cf8262c13db40c4961628077f0 (patch)
tree9c80817ad389171d30689ca025d7df40f2548853 /xpp
parent52ffdaf30030940ac760970c4badc98936400661 (diff)
SLAB_KERNEL is an obsolete alias of GFP_KERNEL. Fix build on Vanilla 2.6.20 .
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2257 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'xpp')
-rw-r--r--xpp/xbus-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpp/xbus-core.c b/xpp/xbus-core.c
index a65e201..690d9d2 100644
--- a/xpp/xbus-core.c
+++ b/xpp/xbus-core.c
@@ -630,7 +630,7 @@ static struct xbus_poller *poller_new(xbus_t *xbus)
BUG_ON(xbus->busname[0] == '\0'); /* No name? */
BUG_ON(xbus->poller); /* Hmmm... overrun pollers? */
DBG("%s\n", xbus->busname);
- poller = kmalloc(sizeof(*poller), SLAB_KERNEL);
+ poller = kmalloc(sizeof(*poller), GFP_KERNEL);
if(!poller)
goto err;
memset(poller, 0, sizeof(*poller));