Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139600
b: refs/heads/master
c: 03f511d
h: refs/heads/master
v: v3
  • Loading branch information
Isaku Yamahata authored and Tony Luck committed Mar 26, 2009
1 parent fcec3c7 commit 3a02e1b
Show file tree
Hide file tree
Showing 8 changed files with 899 additions and 26 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: bf7ab02f620c1020c869fc71a2c855918b6a5375
refs/heads/master: 03f511dd02f1431ef652fb97a7f2fe7aef47e025
6 changes: 5 additions & 1 deletion trunk/arch/ia64/include/asm/intrinsics.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@ extern long ia64_cmpxchg_called_with_bad_pointer (void);

#ifndef __ASSEMBLY__
#if defined(CONFIG_PARAVIRT) && defined(__KERNEL__)
#define IA64_INTRINSIC_API(name) pv_cpu_ops.name
#ifdef ASM_SUPPORTED
# define IA64_INTRINSIC_API(name) paravirt_ ## name
#else
# define IA64_INTRINSIC_API(name) pv_cpu_ops.name
#endif
#define IA64_INTRINSIC_MACRO(name) paravirt_ ## name
#else
#define IA64_INTRINSIC_API(name) ia64_native_ ## name
Expand Down
8 changes: 8 additions & 0 deletions trunk/arch/ia64/include/asm/paravirt.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@ struct pv_init_ops {
int (*arch_setup_nomca)(void);

void (*post_smp_prepare_boot_cpu)(void);

#ifdef ASM_SUPPORTED
unsigned long (*patch_bundle)(void *sbundle, void *ebundle,
unsigned long type);
unsigned long (*patch_inst)(unsigned long stag, unsigned long etag,
unsigned long type);
#endif
void (*patch_branch)(unsigned long tag, unsigned long type);
};

extern struct pv_init_ops pv_init_ops;
Expand Down
Loading

0 comments on commit 3a02e1b

Please sign in to comment.