Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181889
b: refs/heads/master
c: 7317ac8
h: refs/heads/master
i:
  181887: 64c2925
v: v3
  • Loading branch information
Anton Blanchard authored and Benjamin Herrenschmidt committed Feb 9, 2010
1 parent ed16e85 commit 932283b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 66fcb1059deeae072c1bf1536a8e2613028bce3e
refs/heads/master: 7317ac87119dfb6fac36af4bcc64a25b62b5898d
10 changes: 5 additions & 5 deletions trunk/arch/powerpc/mm/mmu_context_hash64.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <asm/mmu_context.h>

static DEFINE_SPINLOCK(mmu_context_lock);
static DEFINE_IDR(mmu_context_idr);
static DEFINE_IDA(mmu_context_ida);

/*
* The proto-VSID space has 2^35 - 1 segments available for user mappings.
Expand All @@ -39,11 +39,11 @@ int __init_new_context(void)
int err;

again:
if (!idr_pre_get(&mmu_context_idr, GFP_KERNEL))
if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
return -ENOMEM;

spin_lock(&mmu_context_lock);
err = idr_get_new_above(&mmu_context_idr, NULL, 1, &index);
err = ida_get_new_above(&mmu_context_ida, 1, &index);
spin_unlock(&mmu_context_lock);

if (err == -EAGAIN)
Expand All @@ -53,7 +53,7 @@ int __init_new_context(void)

if (index > MAX_CONTEXT) {
spin_lock(&mmu_context_lock);
idr_remove(&mmu_context_idr, index);
ida_remove(&mmu_context_ida, index);
spin_unlock(&mmu_context_lock);
return -ENOMEM;
}
Expand Down Expand Up @@ -85,7 +85,7 @@ int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
void __destroy_context(int context_id)
{
spin_lock(&mmu_context_lock);
idr_remove(&mmu_context_idr, context_id);
ida_remove(&mmu_context_ida, context_id);
spin_unlock(&mmu_context_lock);
}
EXPORT_SYMBOL_GPL(__destroy_context);
Expand Down

0 comments on commit 932283b

Please sign in to comment.