diff options
author | Dean Nelson <dcn@sgi.com> | 2008-07-30 01:34:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-30 12:41:49 -0400 |
commit | 185c3a1b4bb4353529257f97caaeaac6c695e77d (patch) | |
tree | 4978f575ab63c5d040531f685871840aedff76c7 /drivers/misc/sgi-xp/xpc.h | |
parent | c39838ce21ca8e05857ed7f4be5d289011561905 (diff) |
sgi-xp: isolate allocation of XPC's msgqueues to sn2 only
Move the allocation of XPC's msgqueues to xpc_sn2.c.
Signed-off-by: Dean Nelson <dcn@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/sgi-xp/xpc.h')
-rw-r--r-- | drivers/misc/sgi-xp/xpc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/sgi-xp/xpc.h b/drivers/misc/sgi-xp/xpc.h index da2680892dfa..defd08881184 100644 --- a/drivers/misc/sgi-xp/xpc.h +++ b/drivers/misc/sgi-xp/xpc.h | |||
@@ -666,6 +666,8 @@ extern void (*xpc_online_heartbeat) (void); | |||
666 | extern void (*xpc_check_remote_hb) (void); | 666 | extern void (*xpc_check_remote_hb) (void); |
667 | extern enum xp_retval (*xpc_make_first_contact) (struct xpc_partition *); | 667 | extern enum xp_retval (*xpc_make_first_contact) (struct xpc_partition *); |
668 | extern u64 (*xpc_get_chctl_all_flags) (struct xpc_partition *); | 668 | extern u64 (*xpc_get_chctl_all_flags) (struct xpc_partition *); |
669 | extern enum xp_retval (*xpc_allocate_msgqueues) (struct xpc_channel *); | ||
670 | extern void (*xpc_free_msgqueues) (struct xpc_channel *); | ||
669 | extern void (*xpc_notify_senders_of_disconnect) (struct xpc_channel *); | 671 | extern void (*xpc_notify_senders_of_disconnect) (struct xpc_channel *); |
670 | extern void (*xpc_process_msg_chctl_flags) (struct xpc_partition *, int); | 672 | extern void (*xpc_process_msg_chctl_flags) (struct xpc_partition *, int); |
671 | extern int (*xpc_n_of_deliverable_msgs) (struct xpc_channel *); | 673 | extern int (*xpc_n_of_deliverable_msgs) (struct xpc_channel *); |
@@ -728,7 +730,6 @@ extern void xpc_deactivate_partition(const int, struct xpc_partition *, | |||
728 | extern enum xp_retval xpc_initiate_partid_to_nasids(short, void *); | 730 | extern enum xp_retval xpc_initiate_partid_to_nasids(short, void *); |
729 | 731 | ||
730 | /* found in xpc_channel.c */ | 732 | /* found in xpc_channel.c */ |
731 | extern void *xpc_kzalloc_cacheline_aligned(size_t, gfp_t, void **); | ||
732 | extern void xpc_initiate_connect(int); | 733 | extern void xpc_initiate_connect(int); |
733 | extern void xpc_initiate_disconnect(int); | 734 | extern void xpc_initiate_disconnect(int); |
734 | extern enum xp_retval xpc_allocate_msg_wait(struct xpc_channel *); | 735 | extern enum xp_retval xpc_allocate_msg_wait(struct xpc_channel *); |