blob: 2934b44730013731b9f6b8061753866fea6869c3 [file] [log] [blame]
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Dean Nelson45d9ca42008-04-22 14:46:56 -05006 * Copyright (c) 2004-2008 Silicon Graphics, Inc. All Rights Reserved.
Dean Nelson89eb8eb2005-03-23 19:50:00 -07007 */
8
Dean Nelson89eb8eb2005-03-23 19:50:00 -07009/*
10 * Cross Partition Communication (XPC) support - standard version.
11 *
12 * XPC provides a message passing capability that crosses partition
13 * boundaries. This module is made up of two parts:
14 *
15 * partition This part detects the presence/absence of other
16 * partitions. It provides a heartbeat and monitors
17 * the heartbeats of other partitions.
18 *
19 * channel This part manages the channels and sends/receives
20 * messages across them to/from other partitions.
21 *
22 * There are a couple of additional functions residing in XP, which
23 * provide an interface to XPC for its users.
24 *
25 *
26 * Caveats:
27 *
Dean Nelson7fb5e592008-07-29 22:34:10 -070028 * . Currently on sn2, we have no way to determine which nasid an IRQ
Dean Nelsonc39838c2008-07-29 22:34:11 -070029 * came from. Thus, xpc_send_IRQ_sn2() does a remote amo write
30 * followed by an IPI. The amo indicates where data is to be pulled
31 * from, so after the IPI arrives, the remote partition checks the amo
32 * word. The IPI can actually arrive before the amo however, so other
33 * code must periodically check for this case. Also, remote amo
Dean Nelson7fb5e592008-07-29 22:34:10 -070034 * operations do not reliably time out. Thus we do a remote PIO read
35 * solely to know whether the remote partition is down and whether we
36 * should stop sending IPIs to it. This remote PIO read operation is
37 * set up in a special nofault region so SAL knows to ignore (and
Dean Nelsonc39838c2008-07-29 22:34:11 -070038 * cleanup) any errors due to the remote amo write, PIO read, and/or
Dean Nelson7fb5e592008-07-29 22:34:10 -070039 * PIO write operations.
Dean Nelson89eb8eb2005-03-23 19:50:00 -070040 *
41 * If/when new hardware solves this IPI problem, we should abandon
42 * the current approach.
43 *
44 */
45
Dean Nelson89eb8eb2005-03-23 19:50:00 -070046#include <linux/kernel.h>
47#include <linux/module.h>
48#include <linux/init.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070049#include <linux/cache.h>
50#include <linux/interrupt.h>
Nishanth Aravamudan69913922005-07-08 17:10:00 -070051#include <linux/delay.h>
Dean Nelsona607c382005-09-01 14:01:37 -050052#include <linux/reboot.h>
Jes Sorensenf9e505a2006-01-17 12:52:21 -050053#include <linux/completion.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070054#include <linux/kdebug.h>
Dean Nelson2c2b94f2008-04-22 14:50:17 -050055#include <linux/kthread.h>
56#include <linux/uaccess.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070057#include <asm/sn/intr.h>
58#include <asm/sn/sn_sal.h>
Dean Nelson45d9ca42008-04-22 14:46:56 -050059#include "xpc.h"
Dean Nelson89eb8eb2005-03-23 19:50:00 -070060
Dean Nelson89eb8eb2005-03-23 19:50:00 -070061/* define two XPC debug device structures to be used with dev_dbg() et al */
62
63struct device_driver xpc_dbg_name = {
64 .name = "xpc"
65};
66
67struct device xpc_part_dbg_subname = {
68 .bus_id = {0}, /* set to "part" at xpc_init() time */
69 .driver = &xpc_dbg_name
70};
71
72struct device xpc_chan_dbg_subname = {
73 .bus_id = {0}, /* set to "chan" at xpc_init() time */
74 .driver = &xpc_dbg_name
75};
76
77struct device *xpc_part = &xpc_part_dbg_subname;
78struct device *xpc_chan = &xpc_chan_dbg_subname;
79
Dean Nelson1f4674b2006-01-10 11:08:00 -060080static int xpc_kdebug_ignore;
81
Dean Nelson89eb8eb2005-03-23 19:50:00 -070082/* systune related variables for /proc/sys directories */
83
Dean Nelsona607c382005-09-01 14:01:37 -050084static int xpc_hb_interval = XPC_HB_DEFAULT_INTERVAL;
85static int xpc_hb_min_interval = 1;
86static int xpc_hb_max_interval = 10;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070087
Dean Nelsona607c382005-09-01 14:01:37 -050088static int xpc_hb_check_interval = XPC_HB_CHECK_DEFAULT_INTERVAL;
89static int xpc_hb_check_min_interval = 10;
90static int xpc_hb_check_max_interval = 120;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070091
Dean Nelsona47d5da2008-07-29 22:34:09 -070092int xpc_disengage_timelimit = XPC_DISENGAGE_DEFAULT_TIMELIMIT;
93static int xpc_disengage_min_timelimit; /* = 0 */
94static int xpc_disengage_max_timelimit = 120;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070095
96static ctl_table xpc_sys_xpc_hb_dir[] = {
97 {
Dean Nelson35190502008-04-22 14:48:55 -050098 .ctl_name = CTL_UNNUMBERED,
99 .procname = "hb_interval",
100 .data = &xpc_hb_interval,
101 .maxlen = sizeof(int),
102 .mode = 0644,
103 .proc_handler = &proc_dointvec_minmax,
104 .strategy = &sysctl_intvec,
105 .extra1 = &xpc_hb_min_interval,
106 .extra2 = &xpc_hb_max_interval},
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700107 {
Dean Nelson35190502008-04-22 14:48:55 -0500108 .ctl_name = CTL_UNNUMBERED,
109 .procname = "hb_check_interval",
110 .data = &xpc_hb_check_interval,
111 .maxlen = sizeof(int),
112 .mode = 0644,
113 .proc_handler = &proc_dointvec_minmax,
114 .strategy = &sysctl_intvec,
115 .extra1 = &xpc_hb_check_min_interval,
116 .extra2 = &xpc_hb_check_max_interval},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800117 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700118};
119static ctl_table xpc_sys_xpc_dir[] = {
120 {
Dean Nelson35190502008-04-22 14:48:55 -0500121 .ctl_name = CTL_UNNUMBERED,
122 .procname = "hb",
123 .mode = 0555,
124 .child = xpc_sys_xpc_hb_dir},
Dean Nelsone54af722005-10-25 14:07:43 -0500125 {
Dean Nelson35190502008-04-22 14:48:55 -0500126 .ctl_name = CTL_UNNUMBERED,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700127 .procname = "disengage_timelimit",
128 .data = &xpc_disengage_timelimit,
Dean Nelson35190502008-04-22 14:48:55 -0500129 .maxlen = sizeof(int),
130 .mode = 0644,
131 .proc_handler = &proc_dointvec_minmax,
132 .strategy = &sysctl_intvec,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700133 .extra1 = &xpc_disengage_min_timelimit,
134 .extra2 = &xpc_disengage_max_timelimit},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800135 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700136};
137static ctl_table xpc_sys_dir[] = {
138 {
Dean Nelson35190502008-04-22 14:48:55 -0500139 .ctl_name = CTL_UNNUMBERED,
140 .procname = "xpc",
141 .mode = 0555,
142 .child = xpc_sys_xpc_dir},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800143 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700144};
145static struct ctl_table_header *xpc_sysctl;
146
Dean Nelsona47d5da2008-07-29 22:34:09 -0700147/* non-zero if any remote partition disengage was timed out */
148int xpc_disengage_timedout;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700149
Dean Nelson6e410172008-07-29 22:34:09 -0700150/* #of activate IRQs received */
151atomic_t xpc_activate_IRQ_rcvd = ATOMIC_INIT(0);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700152
153/* IRQ handler notifies this wait queue on receipt of an IRQ */
Dean Nelson6e410172008-07-29 22:34:09 -0700154DECLARE_WAIT_QUEUE_HEAD(xpc_activate_IRQ_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700155
156static unsigned long xpc_hb_check_timeout;
Dean Nelson33ba3c72008-07-29 22:34:07 -0700157static struct timer_list xpc_hb_timer;
158void *xpc_heartbeating_to_mask;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700159
Dean Nelsone54af722005-10-25 14:07:43 -0500160/* notification that the xpc_hb_checker thread has exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500161static DECLARE_COMPLETION(xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700162
Dean Nelsone54af722005-10-25 14:07:43 -0500163/* notification that the xpc_discovery thread has exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500164static DECLARE_COMPLETION(xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700165
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700166static void xpc_kthread_waitmsgs(struct xpc_partition *, struct xpc_channel *);
167
Dean Nelsona607c382005-09-01 14:01:37 -0500168static int xpc_system_reboot(struct notifier_block *, unsigned long, void *);
169static struct notifier_block xpc_reboot_notifier = {
170 .notifier_call = xpc_system_reboot,
171};
172
Dean Nelson780d09e2005-11-09 14:41:57 -0600173static int xpc_system_die(struct notifier_block *, unsigned long, void *);
174static struct notifier_block xpc_die_notifier = {
175 .notifier_call = xpc_system_die,
176};
177
Dean Nelson94bd2702008-07-29 22:34:05 -0700178enum xp_retval (*xpc_rsvd_page_init) (struct xpc_rsvd_page *rp);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700179void (*xpc_heartbeat_init) (void);
180void (*xpc_heartbeat_exit) (void);
181void (*xpc_increment_heartbeat) (void);
182void (*xpc_offline_heartbeat) (void);
183void (*xpc_online_heartbeat) (void);
184void (*xpc_check_remote_hb) (void);
185
Dean Nelsone17d4162008-07-29 22:34:06 -0700186enum xp_retval (*xpc_make_first_contact) (struct xpc_partition *part);
Dean Nelsona47d5da2008-07-29 22:34:09 -0700187void (*xpc_notify_senders_of_disconnect) (struct xpc_channel *ch);
Dean Nelson7fb5e592008-07-29 22:34:10 -0700188u64 (*xpc_get_chctl_all_flags) (struct xpc_partition *part);
189void (*xpc_process_msg_chctl_flags) (struct xpc_partition *part, int ch_number);
Dean Nelsona47d5da2008-07-29 22:34:09 -0700190int (*xpc_n_of_deliverable_msgs) (struct xpc_channel *ch);
Dean Nelsone17d4162008-07-29 22:34:06 -0700191struct xpc_msg *(*xpc_get_deliverable_msg) (struct xpc_channel *ch);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700192
Dean Nelsona47d5da2008-07-29 22:34:09 -0700193void (*xpc_request_partition_activation) (struct xpc_rsvd_page *remote_rp,
194 u64 remote_rp_pa, int nasid);
195void (*xpc_request_partition_reactivation) (struct xpc_partition *part);
196void (*xpc_request_partition_deactivation) (struct xpc_partition *part);
197void (*xpc_cancel_partition_deactivation_request) (struct xpc_partition *part);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700198
Dean Nelson6e410172008-07-29 22:34:09 -0700199void (*xpc_process_activate_IRQ_rcvd) (int n_IRQs_expected);
Dean Nelsone17d4162008-07-29 22:34:06 -0700200enum xp_retval (*xpc_setup_infrastructure) (struct xpc_partition *part);
201void (*xpc_teardown_infrastructure) (struct xpc_partition *part);
202
Dean Nelsona47d5da2008-07-29 22:34:09 -0700203void (*xpc_indicate_partition_engaged) (struct xpc_partition *part);
204int (*xpc_partition_engaged) (short partid);
205int (*xpc_any_partition_engaged) (void);
206void (*xpc_indicate_partition_disengaged) (struct xpc_partition *part);
207void (*xpc_assume_partition_disengaged) (short partid);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700208
Dean Nelson7fb5e592008-07-29 22:34:10 -0700209void (*xpc_send_chctl_closerequest) (struct xpc_channel *ch,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700210 unsigned long *irq_flags);
Dean Nelson7fb5e592008-07-29 22:34:10 -0700211void (*xpc_send_chctl_closereply) (struct xpc_channel *ch,
212 unsigned long *irq_flags);
213void (*xpc_send_chctl_openrequest) (struct xpc_channel *ch,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700214 unsigned long *irq_flags);
Dean Nelson7fb5e592008-07-29 22:34:10 -0700215void (*xpc_send_chctl_openreply) (struct xpc_channel *ch,
216 unsigned long *irq_flags);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700217
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700218enum xp_retval (*xpc_send_msg) (struct xpc_channel *ch, u32 flags,
219 void *payload, u16 payload_size, u8 notify_type,
220 xpc_notify_func func, void *key);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700221void (*xpc_received_msg) (struct xpc_channel *ch, struct xpc_msg *msg);
Dean Nelson94bd2702008-07-29 22:34:05 -0700222
Dean Nelsona607c382005-09-01 14:01:37 -0500223/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700224 * Timer function to enforce the timelimit on the partition disengage.
Dean Nelsona607c382005-09-01 14:01:37 -0500225 */
226static void
Dean Nelsona47d5da2008-07-29 22:34:09 -0700227xpc_timeout_partition_disengage(unsigned long data)
Dean Nelsona607c382005-09-01 14:01:37 -0500228{
Dean Nelson35190502008-04-22 14:48:55 -0500229 struct xpc_partition *part = (struct xpc_partition *)data;
Dean Nelsona607c382005-09-01 14:01:37 -0500230
Dean Nelsona47d5da2008-07-29 22:34:09 -0700231 DBUG_ON(time_is_after_jiffies(part->disengage_timeout));
Dean Nelsona607c382005-09-01 14:01:37 -0500232
Dean Nelson35190502008-04-22 14:48:55 -0500233 (void)xpc_partition_disengaged(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500234
Dean Nelsona47d5da2008-07-29 22:34:09 -0700235 DBUG_ON(part->disengage_timeout != 0);
236 DBUG_ON(xpc_partition_engaged(XPC_PARTID(part)));
Dean Nelsona607c382005-09-01 14:01:37 -0500237}
238
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700239/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700240 * Timer to produce the heartbeat. The timer structures function is
241 * already set when this is initially called. A tunable is used to
242 * specify when the next timeout should occur.
243 */
244static void
245xpc_hb_beater(unsigned long dummy)
246{
Dean Nelson33ba3c72008-07-29 22:34:07 -0700247 xpc_increment_heartbeat();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700248
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700249 if (time_is_before_eq_jiffies(xpc_hb_check_timeout))
Dean Nelson6e410172008-07-29 22:34:09 -0700250 wake_up_interruptible(&xpc_activate_IRQ_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700251
252 xpc_hb_timer.expires = jiffies + (xpc_hb_interval * HZ);
253 add_timer(&xpc_hb_timer);
254}
255
Dean Nelson33ba3c72008-07-29 22:34:07 -0700256static void
257xpc_start_hb_beater(void)
258{
259 xpc_heartbeat_init();
260 init_timer(&xpc_hb_timer);
261 xpc_hb_timer.function = xpc_hb_beater;
262 xpc_hb_beater(0);
263}
264
265static void
266xpc_stop_hb_beater(void)
267{
268 del_timer_sync(&xpc_hb_timer);
269 xpc_heartbeat_exit();
270}
271
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700272/*
273 * This thread is responsible for nearly all of the partition
274 * activation/deactivation.
275 */
276static int
277xpc_hb_checker(void *ignore)
278{
279 int last_IRQ_count = 0;
280 int new_IRQ_count;
Dean Nelson35190502008-04-22 14:48:55 -0500281 int force_IRQ = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700282
283 /* this thread was marked active by xpc_hb_init() */
284
Mike Travis0bc3cc02008-07-24 18:21:31 -0700285 set_cpus_allowed_ptr(current, &cpumask_of_cpu(XPC_HB_CHECK_CPU));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700286
Dean Nelson4c013f52007-11-07 07:53:06 -0600287 /* set our heartbeating to other partitions into motion */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700288 xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700289 xpc_start_hb_beater();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700290
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500291 while (!xpc_exiting) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700292
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700293 dev_dbg(xpc_part, "woke up with %d ticks rem; %d IRQs have "
294 "been received\n",
Dean Nelson35190502008-04-22 14:48:55 -0500295 (int)(xpc_hb_check_timeout - jiffies),
Dean Nelson6e410172008-07-29 22:34:09 -0700296 atomic_read(&xpc_activate_IRQ_rcvd) - last_IRQ_count);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700297
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700298 /* checking of remote heartbeats is skewed by IRQ handling */
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700299 if (time_is_before_eq_jiffies(xpc_hb_check_timeout)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700300 dev_dbg(xpc_part, "checking remote heartbeats\n");
301 xpc_check_remote_hb();
302
303 /*
304 * We need to periodically recheck to ensure no
Dean Nelsonc39838c2008-07-29 22:34:11 -0700305 * IRQ/amo pairs have been missed. That check
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700306 * must always reset xpc_hb_check_timeout.
307 */
308 force_IRQ = 1;
309 }
310
Dean Nelsona607c382005-09-01 14:01:37 -0500311 /* check for outstanding IRQs */
Dean Nelson6e410172008-07-29 22:34:09 -0700312 new_IRQ_count = atomic_read(&xpc_activate_IRQ_rcvd);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700313 if (last_IRQ_count < new_IRQ_count || force_IRQ != 0) {
314 force_IRQ = 0;
315
316 dev_dbg(xpc_part, "found an IRQ to process; will be "
317 "resetting xpc_hb_check_timeout\n");
318
Dean Nelson6e410172008-07-29 22:34:09 -0700319 xpc_process_activate_IRQ_rcvd(new_IRQ_count -
320 last_IRQ_count);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700321 last_IRQ_count = new_IRQ_count;
322
323 xpc_hb_check_timeout = jiffies +
Dean Nelson35190502008-04-22 14:48:55 -0500324 (xpc_hb_check_interval * HZ);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700325 }
Dean Nelsona607c382005-09-01 14:01:37 -0500326
327 /* wait for IRQ or timeout */
Dean Nelson6e410172008-07-29 22:34:09 -0700328 (void)wait_event_interruptible(xpc_activate_IRQ_wq,
329 (last_IRQ_count < atomic_read(
330 &xpc_activate_IRQ_rcvd)
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700331 || time_is_before_eq_jiffies(
332 xpc_hb_check_timeout) ||
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500333 xpc_exiting));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700334 }
335
Dean Nelson33ba3c72008-07-29 22:34:07 -0700336 xpc_stop_hb_beater();
337
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700338 dev_dbg(xpc_part, "heartbeat checker is exiting\n");
339
Dean Nelsone54af722005-10-25 14:07:43 -0500340 /* mark this thread as having exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500341 complete(&xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700342 return 0;
343}
344
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700345/*
346 * This thread will attempt to discover other partitions to activate
347 * based on info provided by SAL. This new thread is short lived and
348 * will exit once discovery is complete.
349 */
350static int
351xpc_initiate_discovery(void *ignore)
352{
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700353 xpc_discovery();
354
355 dev_dbg(xpc_part, "discovery thread is exiting\n");
356
Dean Nelsone54af722005-10-25 14:07:43 -0500357 /* mark this thread as having exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500358 complete(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700359 return 0;
360}
361
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700362/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700363 * The first kthread assigned to a newly activated partition is the one
Dean Nelsone17d4162008-07-29 22:34:06 -0700364 * created by XPC HB with which it calls xpc_activating(). XPC hangs on to
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700365 * that kthread until the partition is brought down, at which time that kthread
366 * returns back to XPC HB. (The return of that kthread will signify to XPC HB
367 * that XPC has dismantled all communication infrastructure for the associated
368 * partition.) This kthread becomes the channel manager for that partition.
369 *
370 * Each active partition has a channel manager, who, besides connecting and
371 * disconnecting channels, will ensure that each of the partition's connected
372 * channels has the required number of assigned kthreads to get the work done.
373 */
374static void
375xpc_channel_mgr(struct xpc_partition *part)
376{
377 while (part->act_state != XPC_P_DEACTIVATING ||
Dean Nelson35190502008-04-22 14:48:55 -0500378 atomic_read(&part->nchannels_active) > 0 ||
379 !xpc_partition_disengaged(part)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700380
Dean Nelson7fb5e592008-07-29 22:34:10 -0700381 xpc_process_sent_chctl_flags(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700382
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700383 /*
384 * Wait until we've been requested to activate kthreads or
385 * all of the channel's message queues have been torn down or
386 * a signal is pending.
387 *
388 * The channel_mgr_requests is set to 1 after being awakened,
389 * This is done to prevent the channel mgr from making one pass
390 * through the loop for each request, since he will
391 * be servicing all the requests in one pass. The reason it's
392 * set to 1 instead of 0 is so that other kthreads will know
393 * that the channel mgr is running and won't bother trying to
394 * wake him up.
395 */
396 atomic_dec(&part->channel_mgr_requests);
Dean Nelson35190502008-04-22 14:48:55 -0500397 (void)wait_event_interruptible(part->channel_mgr_wq,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500398 (atomic_read(&part->channel_mgr_requests) > 0 ||
Dean Nelson7fb5e592008-07-29 22:34:10 -0700399 part->chctl.all_flags != 0 ||
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500400 (part->act_state == XPC_P_DEACTIVATING &&
401 atomic_read(&part->nchannels_active) == 0 &&
402 xpc_partition_disengaged(part))));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700403 atomic_set(&part->channel_mgr_requests, 1);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700404 }
405}
406
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700407/*
408 * When XPC HB determines that a partition has come up, it will create a new
409 * kthread and that kthread will call this function to attempt to set up the
410 * basic infrastructure used for Cross Partition Communication with the newly
411 * upped partition.
412 *
413 * The kthread that was created by XPC HB and which setup the XPC
Dean Nelsone17d4162008-07-29 22:34:06 -0700414 * infrastructure will remain assigned to the partition becoming the channel
415 * manager for that partition until the partition is deactivating, at which
416 * time the kthread will teardown the XPC infrastructure and then exit.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700417 */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700418static int
419xpc_activating(void *__partid)
420{
Dean Nelson64d032b2008-05-12 14:02:03 -0700421 short partid = (u64)__partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700422 struct xpc_partition *part = &xpc_partitions[partid];
423 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700424
Dean Nelsonbc63d382008-07-29 22:34:04 -0700425 DBUG_ON(partid < 0 || partid >= xp_max_npartitions);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700426
427 spin_lock_irqsave(&part->act_lock, irq_flags);
428
429 if (part->act_state == XPC_P_DEACTIVATING) {
430 part->act_state = XPC_P_INACTIVE;
431 spin_unlock_irqrestore(&part->act_lock, irq_flags);
432 part->remote_rp_pa = 0;
433 return 0;
434 }
435
436 /* indicate the thread is activating */
437 DBUG_ON(part->act_state != XPC_P_ACTIVATION_REQ);
438 part->act_state = XPC_P_ACTIVATING;
439
440 XPC_SET_REASON(part, 0, 0);
441 spin_unlock_irqrestore(&part->act_lock, irq_flags);
442
Dean Nelsone17d4162008-07-29 22:34:06 -0700443 dev_dbg(xpc_part, "activating partition %d\n", partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700444
Dean Nelson33ba3c72008-07-29 22:34:07 -0700445 xpc_allow_hb(partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700446
Dean Nelsone17d4162008-07-29 22:34:06 -0700447 if (xpc_setup_infrastructure(part) == xpSuccess) {
448 (void)xpc_part_ref(part); /* this will always succeed */
449
450 if (xpc_make_first_contact(part) == xpSuccess) {
451 xpc_mark_partition_active(part);
452 xpc_channel_mgr(part);
453 /* won't return until partition is deactivating */
454 }
455
456 xpc_part_deref(part);
457 xpc_teardown_infrastructure(part);
458 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700459
Dean Nelson33ba3c72008-07-29 22:34:07 -0700460 xpc_disallow_hb(partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700461 xpc_mark_partition_inactive(part);
462
Dean Nelson65c17b82008-05-12 14:02:02 -0700463 if (part->reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700464 /* interrupting ourselves results in activating partition */
Dean Nelsona47d5da2008-07-29 22:34:09 -0700465 xpc_request_partition_reactivation(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700466 }
467
468 return 0;
469}
470
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700471void
472xpc_activate_partition(struct xpc_partition *part)
473{
Dean Nelson64d032b2008-05-12 14:02:03 -0700474 short partid = XPC_PARTID(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700475 unsigned long irq_flags;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500476 struct task_struct *kthread;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700477
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700478 spin_lock_irqsave(&part->act_lock, irq_flags);
479
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700480 DBUG_ON(part->act_state != XPC_P_INACTIVE);
481
Robin Holt7c6c6632006-02-02 12:30:21 -0600482 part->act_state = XPC_P_ACTIVATION_REQ;
Dean Nelson65c17b82008-05-12 14:02:02 -0700483 XPC_SET_REASON(part, xpCloneKThread, __LINE__);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700484
485 spin_unlock_irqrestore(&part->act_lock, irq_flags);
Robin Holt7c6c6632006-02-02 12:30:21 -0600486
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500487 kthread = kthread_run(xpc_activating, (void *)((u64)partid), "xpc%02d",
488 partid);
489 if (IS_ERR(kthread)) {
Robin Holt7c6c6632006-02-02 12:30:21 -0600490 spin_lock_irqsave(&part->act_lock, irq_flags);
491 part->act_state = XPC_P_INACTIVE;
Dean Nelson65c17b82008-05-12 14:02:02 -0700492 XPC_SET_REASON(part, xpCloneKThreadFailed, __LINE__);
Robin Holt7c6c6632006-02-02 12:30:21 -0600493 spin_unlock_irqrestore(&part->act_lock, irq_flags);
494 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700495}
496
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700497void
498xpc_activate_kthreads(struct xpc_channel *ch, int needed)
499{
500 int idle = atomic_read(&ch->kthreads_idle);
501 int assigned = atomic_read(&ch->kthreads_assigned);
502 int wakeup;
503
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700504 DBUG_ON(needed <= 0);
505
506 if (idle > 0) {
507 wakeup = (needed > idle) ? idle : needed;
508 needed -= wakeup;
509
510 dev_dbg(xpc_chan, "wakeup %d idle kthreads, partid=%d, "
511 "channel=%d\n", wakeup, ch->partid, ch->number);
512
513 /* only wakeup the requested number of kthreads */
514 wake_up_nr(&ch->idle_wq, wakeup);
515 }
516
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500517 if (needed <= 0)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700518 return;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700519
520 if (needed + assigned > ch->kthreads_assigned_limit) {
521 needed = ch->kthreads_assigned_limit - assigned;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500522 if (needed <= 0)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700523 return;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700524 }
525
526 dev_dbg(xpc_chan, "create %d new kthreads, partid=%d, channel=%d\n",
527 needed, ch->partid, ch->number);
528
Dean Nelsona460ef82006-11-22 08:25:00 -0600529 xpc_create_kthreads(ch, needed, 0);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700530}
531
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700532/*
533 * This function is where XPC's kthreads wait for messages to deliver.
534 */
535static void
536xpc_kthread_waitmsgs(struct xpc_partition *part, struct xpc_channel *ch)
537{
538 do {
539 /* deliver messages to their intended recipients */
540
Dean Nelsona47d5da2008-07-29 22:34:09 -0700541 while (xpc_n_of_deliverable_msgs(ch) > 0 &&
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500542 !(ch->flags & XPC_C_DISCONNECTING)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700543 xpc_deliver_msg(ch);
544 }
545
546 if (atomic_inc_return(&ch->kthreads_idle) >
Dean Nelson35190502008-04-22 14:48:55 -0500547 ch->kthreads_idle_limit) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700548 /* too many idle kthreads on this channel */
549 atomic_dec(&ch->kthreads_idle);
550 break;
551 }
552
553 dev_dbg(xpc_chan, "idle kthread calling "
554 "wait_event_interruptible_exclusive()\n");
555
Dean Nelson35190502008-04-22 14:48:55 -0500556 (void)wait_event_interruptible_exclusive(ch->idle_wq,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700557 (xpc_n_of_deliverable_msgs(ch) > 0 ||
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500558 (ch->flags & XPC_C_DISCONNECTING)));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700559
560 atomic_dec(&ch->kthreads_idle);
561
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500562 } while (!(ch->flags & XPC_C_DISCONNECTING));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700563}
564
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700565static int
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500566xpc_kthread_start(void *args)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700567{
Dean Nelson64d032b2008-05-12 14:02:03 -0700568 short partid = XPC_UNPACK_ARG1(args);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700569 u16 ch_number = XPC_UNPACK_ARG2(args);
570 struct xpc_partition *part = &xpc_partitions[partid];
571 struct xpc_channel *ch;
572 int n_needed;
Dean Nelsone54af722005-10-25 14:07:43 -0500573 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700574
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700575 dev_dbg(xpc_chan, "kthread starting, partid=%d, channel=%d\n",
576 partid, ch_number);
577
578 ch = &part->channels[ch_number];
579
580 if (!(ch->flags & XPC_C_DISCONNECTING)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700581
582 /* let registerer know that connection has been established */
583
Dean Nelsone54af722005-10-25 14:07:43 -0500584 spin_lock_irqsave(&ch->lock, irq_flags);
Dean Nelson4c2cd962006-02-15 08:02:21 -0600585 if (!(ch->flags & XPC_C_CONNECTEDCALLOUT)) {
586 ch->flags |= XPC_C_CONNECTEDCALLOUT;
Dean Nelsone54af722005-10-25 14:07:43 -0500587 spin_unlock_irqrestore(&ch->lock, irq_flags);
588
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700589 xpc_connected_callout(ch);
590
Dean Nelson4c2cd962006-02-15 08:02:21 -0600591 spin_lock_irqsave(&ch->lock, irq_flags);
592 ch->flags |= XPC_C_CONNECTEDCALLOUT_MADE;
593 spin_unlock_irqrestore(&ch->lock, irq_flags);
594
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700595 /*
596 * It is possible that while the callout was being
597 * made that the remote partition sent some messages.
598 * If that is the case, we may need to activate
599 * additional kthreads to help deliver them. We only
600 * need one less than total #of messages to deliver.
601 */
Dean Nelsona47d5da2008-07-29 22:34:09 -0700602 n_needed = xpc_n_of_deliverable_msgs(ch) - 1;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500603 if (n_needed > 0 && !(ch->flags & XPC_C_DISCONNECTING))
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700604 xpc_activate_kthreads(ch, n_needed);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500605
Dean Nelsone54af722005-10-25 14:07:43 -0500606 } else {
607 spin_unlock_irqrestore(&ch->lock, irq_flags);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700608 }
609
610 xpc_kthread_waitmsgs(part, ch);
611 }
612
Dean Nelsona460ef82006-11-22 08:25:00 -0600613 /* let registerer know that connection is disconnecting */
Dean Nelsone54af722005-10-25 14:07:43 -0500614
Dean Nelsona460ef82006-11-22 08:25:00 -0600615 spin_lock_irqsave(&ch->lock, irq_flags);
616 if ((ch->flags & XPC_C_CONNECTEDCALLOUT_MADE) &&
Dean Nelson35190502008-04-22 14:48:55 -0500617 !(ch->flags & XPC_C_DISCONNECTINGCALLOUT)) {
Dean Nelsona460ef82006-11-22 08:25:00 -0600618 ch->flags |= XPC_C_DISCONNECTINGCALLOUT;
Dean Nelson4c2cd962006-02-15 08:02:21 -0600619 spin_unlock_irqrestore(&ch->lock, irq_flags);
Dean Nelsona460ef82006-11-22 08:25:00 -0600620
Dean Nelson65c17b82008-05-12 14:02:02 -0700621 xpc_disconnect_callout(ch, xpDisconnecting);
Dean Nelsona460ef82006-11-22 08:25:00 -0600622
623 spin_lock_irqsave(&ch->lock, irq_flags);
624 ch->flags |= XPC_C_DISCONNECTINGCALLOUT_MADE;
625 }
626 spin_unlock_irqrestore(&ch->lock, irq_flags);
627
Dean Nelsona47d5da2008-07-29 22:34:09 -0700628 if (atomic_dec_return(&ch->kthreads_assigned) == 0 &&
629 atomic_dec_return(&part->nchannels_engaged) == 0) {
630 xpc_indicate_partition_disengaged(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700631 }
632
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700633 xpc_msgqueue_deref(ch);
634
635 dev_dbg(xpc_chan, "kthread exiting, partid=%d, channel=%d\n",
636 partid, ch_number);
637
638 xpc_part_deref(part);
639 return 0;
640}
641
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700642/*
643 * For each partition that XPC has established communications with, there is
644 * a minimum of one kernel thread assigned to perform any operation that
645 * may potentially sleep or block (basically the callouts to the asynchronous
646 * functions registered via xpc_connect()).
647 *
648 * Additional kthreads are created and destroyed by XPC as the workload
649 * demands.
650 *
651 * A kthread is assigned to one of the active channels that exists for a given
652 * partition.
653 */
654void
Dean Nelsona460ef82006-11-22 08:25:00 -0600655xpc_create_kthreads(struct xpc_channel *ch, int needed,
Dean Nelson35190502008-04-22 14:48:55 -0500656 int ignore_disconnecting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700657{
658 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700659 u64 args = XPC_PACK_ARGS(ch->partid, ch->number);
Dean Nelsona607c382005-09-01 14:01:37 -0500660 struct xpc_partition *part = &xpc_partitions[ch->partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500661 struct task_struct *kthread;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700662
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700663 while (needed-- > 0) {
Dean Nelsone54af722005-10-25 14:07:43 -0500664
665 /*
666 * The following is done on behalf of the newly created
667 * kthread. That kthread is responsible for doing the
668 * counterpart to the following before it exits.
669 */
Dean Nelsona460ef82006-11-22 08:25:00 -0600670 if (ignore_disconnecting) {
671 if (!atomic_inc_not_zero(&ch->kthreads_assigned)) {
672 /* kthreads assigned had gone to zero */
673 BUG_ON(!(ch->flags &
Dean Nelson35190502008-04-22 14:48:55 -0500674 XPC_C_DISCONNECTINGCALLOUT_MADE));
Dean Nelsona460ef82006-11-22 08:25:00 -0600675 break;
676 }
677
678 } else if (ch->flags & XPC_C_DISCONNECTING) {
679 break;
680
Dean Nelsona47d5da2008-07-29 22:34:09 -0700681 } else if (atomic_inc_return(&ch->kthreads_assigned) == 1 &&
682 atomic_inc_return(&part->nchannels_engaged) == 1) {
683 xpc_indicate_partition_engaged(part);
Dean Nelsona460ef82006-11-22 08:25:00 -0600684 }
Dean Nelson35190502008-04-22 14:48:55 -0500685 (void)xpc_part_ref(part);
Dean Nelsone54af722005-10-25 14:07:43 -0500686 xpc_msgqueue_ref(ch);
Dean Nelsone54af722005-10-25 14:07:43 -0500687
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500688 kthread = kthread_run(xpc_kthread_start, (void *)args,
689 "xpc%02dc%d", ch->partid, ch->number);
690 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700691 /* the fork failed */
Dean Nelsona460ef82006-11-22 08:25:00 -0600692
693 /*
694 * NOTE: if (ignore_disconnecting &&
695 * !(ch->flags & XPC_C_DISCONNECTINGCALLOUT)) is true,
696 * then we'll deadlock if all other kthreads assigned
697 * to this channel are blocked in the channel's
698 * registerer, because the only thing that will unblock
Dean Nelson65c17b82008-05-12 14:02:02 -0700699 * them is the xpDisconnecting callout that this
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500700 * failed kthread_run() would have made.
Dean Nelsona460ef82006-11-22 08:25:00 -0600701 */
702
Dean Nelsone54af722005-10-25 14:07:43 -0500703 if (atomic_dec_return(&ch->kthreads_assigned) == 0 &&
704 atomic_dec_return(&part->nchannels_engaged) == 0) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700705 xpc_indicate_partition_disengaged(part);
Dean Nelsone54af722005-10-25 14:07:43 -0500706 }
707 xpc_msgqueue_deref(ch);
708 xpc_part_deref(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700709
710 if (atomic_read(&ch->kthreads_assigned) <
Dean Nelson35190502008-04-22 14:48:55 -0500711 ch->kthreads_idle_limit) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700712 /*
713 * Flag this as an error only if we have an
714 * insufficient #of kthreads for the channel
715 * to function.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700716 */
717 spin_lock_irqsave(&ch->lock, irq_flags);
Dean Nelson65c17b82008-05-12 14:02:02 -0700718 XPC_DISCONNECT_CHANNEL(ch, xpLackOfResources,
Dean Nelson35190502008-04-22 14:48:55 -0500719 &irq_flags);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700720 spin_unlock_irqrestore(&ch->lock, irq_flags);
721 }
722 break;
723 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700724 }
725}
726
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700727void
728xpc_disconnect_wait(int ch_number)
729{
Dean Nelsona607c382005-09-01 14:01:37 -0500730 unsigned long irq_flags;
Dean Nelson64d032b2008-05-12 14:02:03 -0700731 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700732 struct xpc_partition *part;
733 struct xpc_channel *ch;
Dean Nelsone54af722005-10-25 14:07:43 -0500734 int wakeup_channel_mgr;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700735
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700736 /* now wait for all callouts to the caller's function to cease */
Dean Nelsonbc63d382008-07-29 22:34:04 -0700737 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700738 part = &xpc_partitions[partid];
739
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500740 if (!xpc_part_ref(part))
Dean Nelsone54af722005-10-25 14:07:43 -0500741 continue;
Dean Nelsone54af722005-10-25 14:07:43 -0500742
743 ch = &part->channels[ch_number];
744
745 if (!(ch->flags & XPC_C_WDISCONNECT)) {
746 xpc_part_deref(part);
747 continue;
748 }
749
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500750 wait_for_completion(&ch->wdisconnect_wait);
Dean Nelsone54af722005-10-25 14:07:43 -0500751
752 spin_lock_irqsave(&ch->lock, irq_flags);
753 DBUG_ON(!(ch->flags & XPC_C_DISCONNECTED));
754 wakeup_channel_mgr = 0;
755
Dean Nelson7fb5e592008-07-29 22:34:10 -0700756 if (ch->delayed_chctl_flags) {
Dean Nelsone54af722005-10-25 14:07:43 -0500757 if (part->act_state != XPC_P_DEACTIVATING) {
Dean Nelson7fb5e592008-07-29 22:34:10 -0700758 spin_lock(&part->chctl_lock);
759 part->chctl.flags[ch->number] |=
760 ch->delayed_chctl_flags;
761 spin_unlock(&part->chctl_lock);
Dean Nelsone54af722005-10-25 14:07:43 -0500762 wakeup_channel_mgr = 1;
763 }
Dean Nelson7fb5e592008-07-29 22:34:10 -0700764 ch->delayed_chctl_flags = 0;
Dean Nelsone54af722005-10-25 14:07:43 -0500765 }
766
767 ch->flags &= ~XPC_C_WDISCONNECT;
768 spin_unlock_irqrestore(&ch->lock, irq_flags);
769
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500770 if (wakeup_channel_mgr)
Dean Nelsone54af722005-10-25 14:07:43 -0500771 xpc_wakeup_channel_mgr(part);
Dean Nelsone54af722005-10-25 14:07:43 -0500772
773 xpc_part_deref(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700774 }
775}
776
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700777static void
Dean Nelson65c17b82008-05-12 14:02:02 -0700778xpc_do_exit(enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700779{
Dean Nelson64d032b2008-05-12 14:02:03 -0700780 short partid;
Dean Nelson1ecaded2006-01-06 09:48:21 -0600781 int active_part_count, printed_waiting_msg = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700782 struct xpc_partition *part;
Dean Nelsona47d5da2008-07-29 22:34:09 -0700783 unsigned long printmsg_time, disengage_timeout = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700784
Dean Nelsona607c382005-09-01 14:01:37 -0500785 /* a 'rmmod XPC' and a 'reboot' cannot both end up here together */
786 DBUG_ON(xpc_exiting == 1);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700787
788 /*
Dean Nelsona607c382005-09-01 14:01:37 -0500789 * Let the heartbeat checker thread and the discovery thread
790 * (if one is running) know that they should exit. Also wake up
791 * the heartbeat checker thread in case it's sleeping.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700792 */
793 xpc_exiting = 1;
Dean Nelson6e410172008-07-29 22:34:09 -0700794 wake_up_interruptible(&xpc_activate_IRQ_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700795
Dean Nelsone54af722005-10-25 14:07:43 -0500796 /* wait for the discovery thread to exit */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500797 wait_for_completion(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700798
Dean Nelsone54af722005-10-25 14:07:43 -0500799 /* wait for the heartbeat checker thread to exit */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500800 wait_for_completion(&xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700801
Dean Nelsona607c382005-09-01 14:01:37 -0500802 /* sleep for a 1/3 of a second or so */
Dean Nelson35190502008-04-22 14:48:55 -0500803 (void)msleep_interruptible(300);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700804
805 /* wait for all partitions to become inactive */
806
Dean Nelsona47d5da2008-07-29 22:34:09 -0700807 printmsg_time = jiffies + (XPC_DEACTIVATE_PRINTMSG_INTERVAL * HZ);
808 xpc_disengage_timedout = 0;
Dean Nelsona607c382005-09-01 14:01:37 -0500809
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700810 do {
811 active_part_count = 0;
812
Dean Nelsonbc63d382008-07-29 22:34:04 -0700813 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700814 part = &xpc_partitions[partid];
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700815
Dean Nelsona607c382005-09-01 14:01:37 -0500816 if (xpc_partition_disengaged(part) &&
Dean Nelson35190502008-04-22 14:48:55 -0500817 part->act_state == XPC_P_INACTIVE) {
Dean Nelsona607c382005-09-01 14:01:37 -0500818 continue;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700819 }
Dean Nelsona607c382005-09-01 14:01:37 -0500820
821 active_part_count++;
822
823 XPC_DEACTIVATE_PARTITION(part, reason);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600824
Dean Nelsona47d5da2008-07-29 22:34:09 -0700825 if (part->disengage_timeout > disengage_timeout)
826 disengage_timeout = part->disengage_timeout;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700827 }
828
Dean Nelsona47d5da2008-07-29 22:34:09 -0700829 if (xpc_any_partition_engaged()) {
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700830 if (time_is_before_jiffies(printmsg_time)) {
Dean Nelson1ecaded2006-01-06 09:48:21 -0600831 dev_info(xpc_part, "waiting for remote "
Dean Nelsona47d5da2008-07-29 22:34:09 -0700832 "partitions to deactivate, timeout in "
833 "%ld seconds\n", (disengage_timeout -
834 jiffies) / HZ);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600835 printmsg_time = jiffies +
Dean Nelsona47d5da2008-07-29 22:34:09 -0700836 (XPC_DEACTIVATE_PRINTMSG_INTERVAL * HZ);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600837 printed_waiting_msg = 1;
838 }
839
840 } else if (active_part_count > 0) {
841 if (printed_waiting_msg) {
842 dev_info(xpc_part, "waiting for local partition"
Dean Nelsona47d5da2008-07-29 22:34:09 -0700843 " to deactivate\n");
Dean Nelson1ecaded2006-01-06 09:48:21 -0600844 printed_waiting_msg = 0;
845 }
846
847 } else {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700848 if (!xpc_disengage_timedout) {
Dean Nelson1ecaded2006-01-06 09:48:21 -0600849 dev_info(xpc_part, "all partitions have "
Dean Nelsona47d5da2008-07-29 22:34:09 -0700850 "deactivated\n");
Dean Nelson1ecaded2006-01-06 09:48:21 -0600851 }
852 break;
Dean Nelsona607c382005-09-01 14:01:37 -0500853 }
854
855 /* sleep for a 1/3 of a second or so */
Dean Nelson35190502008-04-22 14:48:55 -0500856 (void)msleep_interruptible(300);
Dean Nelsona607c382005-09-01 14:01:37 -0500857
858 } while (1);
859
Dean Nelsona47d5da2008-07-29 22:34:09 -0700860 DBUG_ON(xpc_any_partition_engaged());
Dean Nelson33ba3c72008-07-29 22:34:07 -0700861 DBUG_ON(xpc_any_hbs_allowed() != 0);
Dean Nelsona607c382005-09-01 14:01:37 -0500862
Dean Nelsona607c382005-09-01 14:01:37 -0500863 /* indicate to others that our reserved page is uninitialized */
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700864 xpc_rsvd_page->stamp = 0;
Dean Nelsona607c382005-09-01 14:01:37 -0500865
Dean Nelson65c17b82008-05-12 14:02:02 -0700866 if (reason == xpUnloading) {
Dean Nelson35190502008-04-22 14:48:55 -0500867 (void)unregister_die_notifier(&xpc_die_notifier);
Dean Nelsonbc63d382008-07-29 22:34:04 -0700868 (void)unregister_reboot_notifier(&xpc_reboot_notifier);
Dean Nelson0752c672006-01-10 11:07:19 -0600869 }
Dean Nelson780d09e2005-11-09 14:41:57 -0600870
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700871 /* clear the interface to XPC's functions */
872 xpc_clear_interface();
873
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500874 if (xpc_sysctl)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700875 unregister_sysctl_table(xpc_sysctl);
Dean Nelson7682a4c2006-08-08 15:03:29 -0500876
Dean Nelsonbc63d382008-07-29 22:34:04 -0700877 kfree(xpc_partitions);
Dean Nelson7682a4c2006-08-08 15:03:29 -0500878 kfree(xpc_remote_copy_buffer_base);
Dean Nelson6e410172008-07-29 22:34:09 -0700879
880 if (is_shub())
881 xpc_exit_sn2();
882 else
883 xpc_exit_uv();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700884}
885
Dean Nelsona607c382005-09-01 14:01:37 -0500886/*
Dean Nelsond6ad0332006-01-10 11:08:55 -0600887 * This function is called when the system is being rebooted.
888 */
889static int
890xpc_system_reboot(struct notifier_block *nb, unsigned long event, void *unused)
891{
Dean Nelson65c17b82008-05-12 14:02:02 -0700892 enum xp_retval reason;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600893
Dean Nelsond6ad0332006-01-10 11:08:55 -0600894 switch (event) {
895 case SYS_RESTART:
Dean Nelson65c17b82008-05-12 14:02:02 -0700896 reason = xpSystemReboot;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600897 break;
898 case SYS_HALT:
Dean Nelson65c17b82008-05-12 14:02:02 -0700899 reason = xpSystemHalt;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600900 break;
901 case SYS_POWER_OFF:
Dean Nelson65c17b82008-05-12 14:02:02 -0700902 reason = xpSystemPoweroff;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600903 break;
904 default:
Dean Nelson65c17b82008-05-12 14:02:02 -0700905 reason = xpSystemGoingDown;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600906 }
907
908 xpc_do_exit(reason);
909 return NOTIFY_DONE;
910}
911
Dean Nelsond6ad0332006-01-10 11:08:55 -0600912/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700913 * Notify other partitions to deactivate from us by first disengaging from all
914 * references to our memory.
Dean Nelson780d09e2005-11-09 14:41:57 -0600915 */
916static void
Dean Nelsona47d5da2008-07-29 22:34:09 -0700917xpc_die_deactivate(void)
Dean Nelson780d09e2005-11-09 14:41:57 -0600918{
919 struct xpc_partition *part;
Dean Nelson64d032b2008-05-12 14:02:03 -0700920 short partid;
Dean Nelsona47d5da2008-07-29 22:34:09 -0700921 int any_engaged;
922 long time, printmsg_time, disengage_timeout;
Dean Nelson780d09e2005-11-09 14:41:57 -0600923
Dean Nelson780d09e2005-11-09 14:41:57 -0600924 /* keep xpc_hb_checker thread from doing anything (just in case) */
925 xpc_exiting = 1;
926
Dean Nelson33ba3c72008-07-29 22:34:07 -0700927 xpc_disallow_all_hbs(); /*indicate we're deactivated */
Dean Nelson780d09e2005-11-09 14:41:57 -0600928
Dean Nelsonbc63d382008-07-29 22:34:04 -0700929 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson780d09e2005-11-09 14:41:57 -0600930 part = &xpc_partitions[partid];
931
Dean Nelsona47d5da2008-07-29 22:34:09 -0700932 if (xpc_partition_engaged(partid) ||
Dean Nelson35190502008-04-22 14:48:55 -0500933 part->act_state != XPC_P_INACTIVE) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700934 xpc_request_partition_deactivation(part);
935 xpc_indicate_partition_disengaged(part);
Dean Nelson780d09e2005-11-09 14:41:57 -0600936 }
937 }
938
Dean Nelson1ecaded2006-01-06 09:48:21 -0600939 time = rtc_time();
940 printmsg_time = time +
Dean Nelsona47d5da2008-07-29 22:34:09 -0700941 (XPC_DEACTIVATE_PRINTMSG_INTERVAL * sn_rtc_cycles_per_second);
942 disengage_timeout = time +
943 (xpc_disengage_timelimit * sn_rtc_cycles_per_second);
Dean Nelson780d09e2005-11-09 14:41:57 -0600944
Dean Nelsona47d5da2008-07-29 22:34:09 -0700945 /*
946 * Though we requested that all other partitions deactivate from us,
947 * we only wait until they've all disengaged.
948 */
Dean Nelson780d09e2005-11-09 14:41:57 -0600949
Dean Nelson1ecaded2006-01-06 09:48:21 -0600950 while (1) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700951 any_engaged = xpc_any_partition_engaged();
952 if (!any_engaged) {
953 dev_info(xpc_part, "all partitions have deactivated\n");
Dean Nelson1ecaded2006-01-06 09:48:21 -0600954 break;
955 }
Dean Nelson780d09e2005-11-09 14:41:57 -0600956
Dean Nelson1ecaded2006-01-06 09:48:21 -0600957 time = rtc_time();
Dean Nelsona47d5da2008-07-29 22:34:09 -0700958 if (time >= disengage_timeout) {
Dean Nelsonbc63d382008-07-29 22:34:04 -0700959 for (partid = 0; partid < xp_max_npartitions;
960 partid++) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700961 if (xpc_partition_engaged(partid)) {
962 dev_info(xpc_part, "deactivate from "
Dean Nelson35190502008-04-22 14:48:55 -0500963 "remote partition %d timed "
964 "out\n", partid);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600965 }
966 }
967 break;
968 }
969
970 if (time >= printmsg_time) {
Dean Nelson780d09e2005-11-09 14:41:57 -0600971 dev_info(xpc_part, "waiting for remote partitions to "
Dean Nelsona47d5da2008-07-29 22:34:09 -0700972 "deactivate, timeout in %ld seconds\n",
973 (disengage_timeout - time) /
Dean Nelson35190502008-04-22 14:48:55 -0500974 sn_rtc_cycles_per_second);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600975 printmsg_time = time +
Dean Nelsona47d5da2008-07-29 22:34:09 -0700976 (XPC_DEACTIVATE_PRINTMSG_INTERVAL *
Dean Nelson35190502008-04-22 14:48:55 -0500977 sn_rtc_cycles_per_second);
Dean Nelson780d09e2005-11-09 14:41:57 -0600978 }
979 }
Dean Nelson780d09e2005-11-09 14:41:57 -0600980}
981
Dean Nelson780d09e2005-11-09 14:41:57 -0600982/*
Dean Nelson1f4674b2006-01-10 11:08:00 -0600983 * This function is called when the system is being restarted or halted due
984 * to some sort of system failure. If this is the case we need to notify the
985 * other partitions to disengage from all references to our memory.
986 * This function can also be called when our heartbeater could be offlined
987 * for a time. In this case we need to notify other partitions to not worry
988 * about the lack of a heartbeat.
Dean Nelson780d09e2005-11-09 14:41:57 -0600989 */
990static int
991xpc_system_die(struct notifier_block *nb, unsigned long event, void *unused)
992{
993 switch (event) {
994 case DIE_MACHINE_RESTART:
995 case DIE_MACHINE_HALT:
Dean Nelsona47d5da2008-07-29 22:34:09 -0700996 xpc_die_deactivate();
Dean Nelson780d09e2005-11-09 14:41:57 -0600997 break;
Dean Nelson1f4674b2006-01-10 11:08:00 -0600998
999 case DIE_KDEBUG_ENTER:
1000 /* Should lack of heartbeat be ignored by other partitions? */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001001 if (!xpc_kdebug_ignore)
Dean Nelson1f4674b2006-01-10 11:08:00 -06001002 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001003
Dean Nelson1f4674b2006-01-10 11:08:00 -06001004 /* fall through */
Dean Nelson780d09e2005-11-09 14:41:57 -06001005 case DIE_MCA_MONARCH_ENTER:
1006 case DIE_INIT_MONARCH_ENTER:
Dean Nelson33ba3c72008-07-29 22:34:07 -07001007 xpc_offline_heartbeat();
Dean Nelson780d09e2005-11-09 14:41:57 -06001008 break;
Dean Nelson1f4674b2006-01-10 11:08:00 -06001009
1010 case DIE_KDEBUG_LEAVE:
1011 /* Is lack of heartbeat being ignored by other partitions? */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001012 if (!xpc_kdebug_ignore)
Dean Nelson1f4674b2006-01-10 11:08:00 -06001013 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001014
Dean Nelson1f4674b2006-01-10 11:08:00 -06001015 /* fall through */
Dean Nelson780d09e2005-11-09 14:41:57 -06001016 case DIE_MCA_MONARCH_LEAVE:
1017 case DIE_INIT_MONARCH_LEAVE:
Dean Nelson33ba3c72008-07-29 22:34:07 -07001018 xpc_online_heartbeat();
Dean Nelson780d09e2005-11-09 14:41:57 -06001019 break;
1020 }
1021
1022 return NOTIFY_DONE;
1023}
1024
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001025int __init
1026xpc_init(void)
1027{
1028 int ret;
Dean Nelson64d032b2008-05-12 14:02:03 -07001029 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001030 struct xpc_partition *part;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001031 struct task_struct *kthread;
Dean Nelson7682a4c2006-08-08 15:03:29 -05001032 size_t buf_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001033
Dean Nelson94bd2702008-07-29 22:34:05 -07001034 if (is_shub()) {
1035 /*
1036 * The ia64-sn2 architecture supports at most 64 partitions.
Dean Nelsonc39838c2008-07-29 22:34:11 -07001037 * And the inability to unregister remote amos restricts us
Dean Nelson94bd2702008-07-29 22:34:05 -07001038 * further to only support exactly 64 partitions on this
1039 * architecture, no less.
1040 */
1041 if (xp_max_npartitions != 64)
1042 return -EINVAL;
1043
Dean Nelson6e410172008-07-29 22:34:09 -07001044 ret = xpc_init_sn2();
1045 if (ret != 0)
1046 return ret;
Dean Nelson94bd2702008-07-29 22:34:05 -07001047
1048 } else if (is_uv()) {
1049 xpc_init_uv();
1050
1051 } else {
Dean Nelson408865c2005-09-08 10:46:58 -05001052 return -ENODEV;
Dean Nelson94bd2702008-07-29 22:34:05 -07001053 }
Dean Nelson408865c2005-09-08 10:46:58 -05001054
Dean Nelsonbc63d382008-07-29 22:34:04 -07001055 snprintf(xpc_part->bus_id, BUS_ID_SIZE, "part");
1056 snprintf(xpc_chan->bus_id, BUS_ID_SIZE, "chan");
1057
Dean Nelson7682a4c2006-08-08 15:03:29 -05001058 buf_size = max(XPC_RP_VARS_SIZE,
Dean Nelson35190502008-04-22 14:48:55 -05001059 XPC_RP_HEADER_SIZE + XP_NASID_MASK_BYTES);
Dean Nelson7682a4c2006-08-08 15:03:29 -05001060 xpc_remote_copy_buffer = xpc_kmalloc_cacheline_aligned(buf_size,
Dean Nelson35190502008-04-22 14:48:55 -05001061 GFP_KERNEL,
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001062 &xpc_remote_copy_buffer_base);
Dean Nelsonbc63d382008-07-29 22:34:04 -07001063 if (xpc_remote_copy_buffer == NULL) {
1064 dev_err(xpc_part, "can't get memory for remote copy buffer\n");
Dean Nelson6e410172008-07-29 22:34:09 -07001065 ret = -ENOMEM;
1066 goto out_1;
Dean Nelsonbc63d382008-07-29 22:34:04 -07001067 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001068
Dean Nelsonbc63d382008-07-29 22:34:04 -07001069 xpc_partitions = kzalloc(sizeof(struct xpc_partition) *
1070 xp_max_npartitions, GFP_KERNEL);
1071 if (xpc_partitions == NULL) {
1072 dev_err(xpc_part, "can't get memory for partition structure\n");
1073 ret = -ENOMEM;
Dean Nelson6e410172008-07-29 22:34:09 -07001074 goto out_2;
Dean Nelsonbc63d382008-07-29 22:34:04 -07001075 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001076
1077 /*
1078 * The first few fields of each entry of xpc_partitions[] need to
1079 * be initialized now so that calls to xpc_connect() and
1080 * xpc_disconnect() can be made prior to the activation of any remote
1081 * partition. NOTE THAT NONE OF THE OTHER FIELDS BELONGING TO THESE
1082 * ENTRIES ARE MEANINGFUL UNTIL AFTER AN ENTRY'S CORRESPONDING
1083 * PARTITION HAS BEEN ACTIVATED.
1084 */
Dean Nelsonbc63d382008-07-29 22:34:04 -07001085 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001086 part = &xpc_partitions[partid];
1087
Dean Nelson35190502008-04-22 14:48:55 -05001088 DBUG_ON((u64)part != L1_CACHE_ALIGN((u64)part));
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001089
Dean Nelson6e410172008-07-29 22:34:09 -07001090 part->activate_IRQ_rcvd = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001091 spin_lock_init(&part->act_lock);
1092 part->act_state = XPC_P_INACTIVE;
1093 XPC_SET_REASON(part, 0, 0);
Dean Nelsona607c382005-09-01 14:01:37 -05001094
Dean Nelsona47d5da2008-07-29 22:34:09 -07001095 init_timer(&part->disengage_timer);
1096 part->disengage_timer.function =
1097 xpc_timeout_partition_disengage;
1098 part->disengage_timer.data = (unsigned long)part;
Dean Nelsona607c382005-09-01 14:01:37 -05001099
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001100 part->setup_state = XPC_P_UNSET;
1101 init_waitqueue_head(&part->teardown_wq);
1102 atomic_set(&part->references, 0);
1103 }
1104
Dean Nelsonbc63d382008-07-29 22:34:04 -07001105 xpc_sysctl = register_sysctl_table(xpc_sys_dir);
1106
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001107 /*
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001108 * Fill the partition reserved page with the information needed by
1109 * other partitions to discover we are alive and establish initial
1110 * communications.
1111 */
Dean Nelson94bd2702008-07-29 22:34:05 -07001112 xpc_rsvd_page = xpc_setup_rsvd_page();
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001113 if (xpc_rsvd_page == NULL) {
Dean Nelsonbc63d382008-07-29 22:34:04 -07001114 dev_err(xpc_part, "can't setup our reserved page\n");
1115 ret = -EBUSY;
1116 goto out_3;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001117 }
1118
Dean Nelsona607c382005-09-01 14:01:37 -05001119 /* add ourselves to the reboot_notifier_list */
1120 ret = register_reboot_notifier(&xpc_reboot_notifier);
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001121 if (ret != 0)
Dean Nelsona607c382005-09-01 14:01:37 -05001122 dev_warn(xpc_part, "can't register reboot notifier\n");
Dean Nelsona607c382005-09-01 14:01:37 -05001123
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07001124 /* add ourselves to the die_notifier list */
Dean Nelson780d09e2005-11-09 14:41:57 -06001125 ret = register_die_notifier(&xpc_die_notifier);
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001126 if (ret != 0)
Dean Nelson780d09e2005-11-09 14:41:57 -06001127 dev_warn(xpc_part, "can't register die notifier\n");
Dean Nelson780d09e2005-11-09 14:41:57 -06001128
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001129 /*
1130 * The real work-horse behind xpc. This processes incoming
1131 * interrupts and monitors remote heartbeats.
1132 */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001133 kthread = kthread_run(xpc_hb_checker, NULL, XPC_HB_CHECK_THREAD_NAME);
1134 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001135 dev_err(xpc_part, "failed while forking hb check thread\n");
Dean Nelsonbc63d382008-07-29 22:34:04 -07001136 ret = -EBUSY;
1137 goto out_4;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001138 }
1139
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001140 /*
1141 * Startup a thread that will attempt to discover other partitions to
1142 * activate based on info provided by SAL. This new thread is short
1143 * lived and will exit once discovery is complete.
1144 */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001145 kthread = kthread_run(xpc_initiate_discovery, NULL,
1146 XPC_DISCOVERY_THREAD_NAME);
1147 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001148 dev_err(xpc_part, "failed while forking discovery thread\n");
1149
1150 /* mark this new thread as a non-starter */
Jes Sorensenf9e505a2006-01-17 12:52:21 -05001151 complete(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001152
Dean Nelson65c17b82008-05-12 14:02:02 -07001153 xpc_do_exit(xpUnloading);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001154 return -EBUSY;
1155 }
1156
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001157 /* set the interface to point at XPC's functions */
1158 xpc_set_interface(xpc_initiate_connect, xpc_initiate_disconnect,
Dean Nelson97bf1aa2008-07-29 22:34:08 -07001159 xpc_initiate_send, xpc_initiate_send_notify,
1160 xpc_initiate_received, xpc_initiate_partid_to_nasids);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001161
1162 return 0;
Dean Nelsonbc63d382008-07-29 22:34:04 -07001163
1164 /* initialization was not successful */
1165out_4:
1166 /* indicate to others that our reserved page is uninitialized */
Dean Nelsonaaa3cd62008-07-29 22:34:07 -07001167 xpc_rsvd_page->stamp = 0;
Dean Nelson94bd2702008-07-29 22:34:05 -07001168
Dean Nelsonbc63d382008-07-29 22:34:04 -07001169 (void)unregister_die_notifier(&xpc_die_notifier);
1170 (void)unregister_reboot_notifier(&xpc_reboot_notifier);
1171out_3:
Dean Nelsonbc63d382008-07-29 22:34:04 -07001172 if (xpc_sysctl)
1173 unregister_sysctl_table(xpc_sysctl);
1174 kfree(xpc_partitions);
Dean Nelson6e410172008-07-29 22:34:09 -07001175out_2:
Dean Nelsonbc63d382008-07-29 22:34:04 -07001176 kfree(xpc_remote_copy_buffer_base);
Dean Nelson6e410172008-07-29 22:34:09 -07001177out_1:
1178 if (is_shub())
1179 xpc_exit_sn2();
1180 else
1181 xpc_exit_uv();
Dean Nelsonbc63d382008-07-29 22:34:04 -07001182 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001183}
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001184
Dean Nelson35190502008-04-22 14:48:55 -05001185module_init(xpc_init);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001186
1187void __exit
1188xpc_exit(void)
1189{
Dean Nelson65c17b82008-05-12 14:02:02 -07001190 xpc_do_exit(xpUnloading);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001191}
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001192
Dean Nelson35190502008-04-22 14:48:55 -05001193module_exit(xpc_exit);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001194
1195MODULE_AUTHOR("Silicon Graphics, Inc.");
1196MODULE_DESCRIPTION("Cross Partition Communication (XPC) support");
1197MODULE_LICENSE("GPL");
1198
1199module_param(xpc_hb_interval, int, 0);
1200MODULE_PARM_DESC(xpc_hb_interval, "Number of seconds between "
Dean Nelson35190502008-04-22 14:48:55 -05001201 "heartbeat increments.");
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001202
1203module_param(xpc_hb_check_interval, int, 0);
1204MODULE_PARM_DESC(xpc_hb_check_interval, "Number of seconds between "
Dean Nelson35190502008-04-22 14:48:55 -05001205 "heartbeat checks.");
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001206
Dean Nelsona47d5da2008-07-29 22:34:09 -07001207module_param(xpc_disengage_timelimit, int, 0);
1208MODULE_PARM_DESC(xpc_disengage_timelimit, "Number of seconds to wait "
1209 "for disengage to complete.");
Dean Nelsone54af722005-10-25 14:07:43 -05001210
Dean Nelson1f4674b2006-01-10 11:08:00 -06001211module_param(xpc_kdebug_ignore, int, 0);
1212MODULE_PARM_DESC(xpc_kdebug_ignore, "Should lack of heartbeat be ignored by "
Dean Nelson35190502008-04-22 14:48:55 -05001213 "other partitions when dropping into kdebug.");