[Suspend2][ 4/7] [Suspend2] Basic (do_suspend/do_resume) entries.

From: Nigel Cunningham
Date: Mon Jun 26 2006 - 12:47:54 EST


Define the two basic proc entries for Suspend2. Without these, nothing
useful will be done ;).

Signed-off-by: Nigel Cunningham <nigel@xxxxxxxxxxxx>

kernel/power/proc.c | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/kernel/power/proc.c b/kernel/power/proc.c
index cdbf9cf..85301a9 100644
--- a/kernel/power/proc.c
+++ b/kernel/power/proc.c
@@ -231,3 +231,28 @@ static int suspend_write_proc(struct fil
return result;
}

+/* Non-module proc entries.
+ *
+ * This array contains entries that are automatically registered at
+ * boot. Modules and the console code register their own entries separately.
+ *
+ * NB: If you move do_suspend, change suspend_write_proc's test so that
+ * suspend_start_anything still gets a 1 when the user echos > do_suspend!
+ */
+
+static struct suspend_proc_data proc_params[] = {
+ { .filename = "do_suspend",
+ .permissions = PROC_WRITEONLY,
+ .type = SUSPEND_PROC_DATA_CUSTOM,
+ .write_proc = suspend_main,
+ .needs_storage_manager = 2,
+ },
+
+ { .filename = "do_resume",
+ .permissions = PROC_WRITEONLY,
+ .type = SUSPEND_PROC_DATA_CUSTOM,
+ .write_proc = __suspend_try_resume,
+ .needs_storage_manager = 2,
+ },
+};
+

--
Nigel Cunningham nigel at suspend2 dot net
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/