Commit 5d501ef4 authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

staging: unisys: visorbus: Convert references to /proc to /sys

Removes references to visorchipset in the /proc filesystem, and replaces
them with references to the /sys filesystem. Also removes reference to the
visorchipset driver, and replaces it with a reference to plain
visorchipset (since it is no longer a standalone driver).
Signed-off-by: default avatarDavid Binder <david.binder@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 22da2c12
...@@ -1159,23 +1159,24 @@ initialize_controlvm_payload(void) ...@@ -1159,23 +1159,24 @@ initialize_controlvm_payload(void)
} }
/* /*
* The general parahotplug flow works as follows. The visorchipset * The general parahotplug flow works as follows. The visorchipset receives
* driver receives a DEVICE_CHANGESTATE message from Command * a DEVICE_CHANGESTATE message from Command specifying a physical device
* specifying a physical device to enable or disable. The CONTROLVM * to enable or disable. The CONTROLVM message handler calls
* message handler calls parahotplug_process_message, which then adds * parahotplug_process_message, which then adds the message to a global list
* the message to a global list and kicks off a udev event which * and kicks off a udev event which causes a user level script to enable or
* causes a user level script to enable or disable the specified * disable the specified device. The udev script then writes to
* device. The udev script then writes to * /sys/devices/platform/visorchipset/parahotplug, which causes the
* /proc/visorchipset/parahotplug, which causes parahotplug_proc_write * parahotplug store functions to get called, at which point the
* to get called, at which point the appropriate CONTROLVM message is * appropriate CONTROLVM message is retrieved from the list and responded
* retrieved from the list and responded to. * to.
*/ */
#define PARAHOTPLUG_TIMEOUT_MS 2000 #define PARAHOTPLUG_TIMEOUT_MS 2000
/** /**
* parahotplug_next_id() - generate unique int to match an outstanding CONTROLVM * parahotplug_next_id() - generate unique int to match an outstanding
* message with a udev script /proc response * CONTROLVM message with a udev script /sys
* response
* *
* Return: a unique integer value * Return: a unique integer value
*/ */
...@@ -1242,7 +1243,7 @@ static DEFINE_SPINLOCK(parahotplug_request_list_lock); /* lock for above */ ...@@ -1242,7 +1243,7 @@ static DEFINE_SPINLOCK(parahotplug_request_list_lock); /* lock for above */
* @id: the id of the request * @id: the id of the request
* @active: indicates whether the request is assigned to active partition * @active: indicates whether the request is assigned to active partition
* *
* Called from the /proc handler, which means the user script has * Called from the /sys handler, which means the user script has
* finished the enable/disable. Find the matching identifier, and * finished the enable/disable. Find the matching identifier, and
* respond to the CONTROLVM message with success. * respond to the CONTROLVM message with success.
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment