Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 274738
b: refs/heads/master
c: 20284aa
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Fitzhardinge committed Oct 25, 2011
1 parent b9648b3 commit 445a9cc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 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: 92e02396d7214fdc7c25239eb647eb48e6fe6ba9
refs/heads/master: 20284aa77c0f6227da4783a920b72dc61d4bcc09
2 changes: 2 additions & 0 deletions trunk/include/linux/jump_label.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ extern void jump_label_lock(void);
extern void jump_label_unlock(void);
extern void arch_jump_label_transform(struct jump_entry *entry,
enum jump_label_type type);
extern void arch_jump_label_transform_static(struct jump_entry *entry,
enum jump_label_type type);
extern int jump_label_text_reserved(void *start, void *end);
extern void jump_label_inc(struct jump_label_key *key);
extern void jump_label_dec(struct jump_label_key *key);
Expand Down
18 changes: 15 additions & 3 deletions trunk/kernel/jump_label.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ static int __jump_label_text_reserved(struct jump_entry *iter_start,
return 0;
}

/*
* Update code which is definitely not currently executing.
* Architectures which need heavyweight synchronization to modify
* running code can override this to make the non-live update case
* cheaper.
*/
void __weak arch_jump_label_transform_static(struct jump_entry *entry,
enum jump_label_type type)
{
arch_jump_label_transform(entry, type);
}

static void __jump_label_update(struct jump_label_key *key,
struct jump_entry *entry,
struct jump_entry *stop, int enable)
Expand Down Expand Up @@ -135,8 +147,8 @@ static __init int jump_label_init(void)
struct jump_label_key *iterk;

iterk = (struct jump_label_key *)(unsigned long)iter->key;
arch_jump_label_transform(iter, jump_label_enabled(iterk) ?
JUMP_LABEL_ENABLE : JUMP_LABEL_DISABLE);
arch_jump_label_transform_static(iter, jump_label_enabled(iterk) ?
JUMP_LABEL_ENABLE : JUMP_LABEL_DISABLE);
if (iterk == key)
continue;

Expand Down Expand Up @@ -208,7 +220,7 @@ void jump_label_apply_nops(struct module *mod)
return;

for (iter = iter_start; iter < iter_stop; iter++)
arch_jump_label_transform(iter, JUMP_LABEL_DISABLE);
arch_jump_label_transform_static(iter, JUMP_LABEL_DISABLE);
}

static int jump_label_add_module(struct module *mod)
Expand Down

0 comments on commit 445a9cc

Please sign in to comment.