public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Nigel Cunningham <nigel@suspend2.net>
To: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [ 01/10] [Suspend2] kernel/power/modules.h
Date: Wed, 1 Feb 2006 22:45:01 +1000	[thread overview]
Message-ID: <200602012245.06328.nigel@suspend2.net> (raw)
In-Reply-To: <84144f020602010432p51ff7a9cq1dd6654bd04f36a4@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 7926 bytes --]

On Wednesday 01 February 2006 22:32, Pekka Enberg wrote:
> On 2/1/06, Nigel Cunningham <nigel@suspend2.net> wrote:
> > Suspend2 uses a strong internal API to separate the method of determining
> > the content of the image from the method by which it is saved. The code
> > for determining the content is part of the core of Suspend2, and
> > transformations (compression and/or encryption) and storage of the pages
> > are handled by 'modules'.
>
> [snip]
>
> > Signed-off-by: Nigel Cunningham <nigel@suspend2.net>
> >
> >  0 files changed, 0 insertions(+), 0 deletions(-)
>
> Uh, oh, where's the patch?

Indeed! Oops! I think I've managed to put this in kmail without having it mangled!

Nigel


[Suspend2] kernel/power/modules.h

Suspend2 uses a strong internal API to separate the method of determining
the content of the image from the method by which it is saved. The code for
determining the content is part of the core of Suspend2, and
transformations (compression and/or encryption) and storage of the pages
are handled by 'modules'.

The name is currently mostly historical, from the time when these
components could be built as kernel modules. That function was dropped to
help with merging, but I'd like to reintroduce it later, since some
embedded developers want to use Suspend2 to improve boot times. If/when
that happens, I'll do it in a way that doesn't require as many exported
symbols as was previously required. For now, though, the name remains,
along with a few functions that are needed for building as modules. My
expectation is that merging will take some time; perhaps by that time, I'll
have modular support back in, in a better form.

Signed-off-by: Nigel Cunningham <nigel@suspend2.net>

---
commit a97697c4228b1f4daa0d692b373f3811bec9cb76
tree 8bf0c9e2bff6abe18ca410a14062a3e2ed8e4214
parent 424a2272be7e6858b3929bae5fbc645c35897482
author Nigel Cunningham <nigel@suspend2.net> Wed, 01 Feb 2006 22:37:48 +1000
committer root <nigel@suspend2.net> Wed, 01 Feb 2006 22:37:48 +1000

 kernel/power/modules.h |  179 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 179 insertions(+), 0 deletions(-)

diff --git a/kernel/power/modules.h b/kernel/power/modules.h
new file mode 100644
index 0000000..ee34199
--- /dev/null
+++ b/kernel/power/modules.h
@@ -0,0 +1,179 @@
+/*
+ * kernel/power/module.h
+ *
+ * Copyright (C) 2004-2005 Nigel Cunningham <nigel@suspend2.net>
+ *
+ * This file is released under the GPLv2.
+ *
+ * It contains declarations for modules. Plugins are additions to
+ * suspend2 that provide facilities such as image compression or
+ * encryption, backends for storage of the image and user interfaces.
+ *
+ */
+
+/* This is the maximum size we store in the image header for a module name */
+#define SUSPEND_MAX_PLUGIN_NAME_LENGTH 30
+
+/* Per-module metadata */
+struct module_header {
+	char name[SUSPEND_MAX_PLUGIN_NAME_LENGTH];
+	int disabled;
+	int type;
+	int index;
+	int data_length;
+	unsigned long signature;
+};
+
+extern int num_modules, num_writers;
+
+enum {
+	FILTER_PLUGIN,
+	WRITER_PLUGIN,
+	MISC_PLUGIN, // Block writer, eg.
+	CHECKSUM_PLUGIN
+};
+
+enum {
+	SUSPEND_ASYNC,
+	SUSPEND_SYNC
+};
+
+struct suspend_filter_ops {
+	/* Writing the image proper */
+	int (*write_chunk) (struct page *buffer_page);
+
+	/* Reading the image proper */
+	int (*read_chunk) (struct page *buffer_page, int sync);
+
+	/* Reset module if image exists but reading aborted */
+	void (*noresume_reset) (void);
+	struct list_head filter_list;
+};
+
+struct suspend_writer_ops {
+	
+	/* Writing the image proper */
+	int (*write_chunk) (struct page *buffer_page);
+
+	/* Reading the image proper */
+	int (*read_chunk) (struct page *buffer_page, int sync);
+
+	/* Reset module if image exists but reading aborted */
+	void (*noresume_reset) (void);
+
+	/* Calls for allocating storage */
+
+	int (*storage_available) (void); // Maximum size of image we can save
+					  // (incl. space already allocated).
+	
+	int (*storage_allocated) (void);
+					// Amount of storage already allocated
+	int (*release_storage) (void);
+	
+	/* 
+	 * Header space is allocated separately. Note that allocation
+	 * of space for the header might result in allocated space 
+	 * being stolen from the main pool if there is no unallocated
+	 * space. We have to be able to allocate enough space for
+	 * the header. We can eat memory to ensure there is enough
+	 * for the main pool.
+	 */
+	int (*allocate_header_space) (int space_requested);
+	int (*allocate_storage) (int space_requested);
+	
+	/* Read and write the metadata */	
+	int (*write_header_init) (void);
+	int (*write_header_chunk) (char *buffer_start, int buffer_size);
+	int (*write_header_cleanup) (void);
+
+	int (*read_header_init) (void);
+	int (*read_header_chunk) (char *buffer_start, int buffer_size);
+	int (*read_header_cleanup) (void);
+
+	/* Prepare metadata to be saved (relativise/absolutise extents) */
+	int (*serialise_extents) (void);
+	int (*load_extents) (void);
+	
+	/* Attempt to parse an image location */
+	int (*parse_sig_location) (char *buffer, int only_writer);
+
+	/* Determine whether image exists that we can restore */
+	int (*image_exists) (void);
+	
+	/* Mark the image as having tried to resume */
+	void (*mark_resume_attempted) (void);
+
+	/* Destroy image if one exists */
+	int (*invalidate_image) (void);
+	
+	/* Wait on I/O */
+	int (*wait_on_io) (int flush_all);
+
+	struct list_head writer_list;
+};
+
+struct suspend_module_ops {
+	/* Functions common to all modules */
+	int type;
+	char *name;
+	struct module *module;
+	int disabled;
+	struct list_head module_list;
+
+	/* Bytes! */
+	unsigned long (*memory_needed) (void);
+	unsigned long (*storage_needed) (void);
+
+	int (*print_debug_info) (char *buffer, int size);
+	int (*save_config_info) (char *buffer);
+	void (*load_config_info) (char *buffer, int len);
+	
+	/* Initialise & cleanup - general routines called
+	 * at the start and end of a cycle. */
+	int (*initialise) (int starting_cycle);
+	void (*cleanup) (int finishing_cycle);
+
+	int (*write_init) (int stream_number);
+	int (*write_cleanup) (void);
+
+	int (*read_init) (int stream_number);
+	int (*read_cleanup) (void);
+
+	union {
+		struct suspend_filter_ops filter;
+		struct suspend_writer_ops writer;
+	} ops;
+};
+
+extern struct suspend_module_ops *active_writer;
+extern struct list_head suspend_filters, suspend_writers, suspend_modules;
+
+extern void prepare_console_modules(void);
+extern void cleanup_console_modules(void);
+
+extern struct suspend_module_ops *find_module_given_name(char *name);
+extern struct suspend_module_ops *get_next_filter(struct suspend_module_ops *);
+
+extern int suspend_register_module(struct suspend_module_ops *module);
+extern void suspend_move_module_tail(struct suspend_module_ops *module);
+
+extern unsigned long header_storage_for_modules(void);
+extern unsigned long memory_for_modules(void);
+
+extern int print_module_debug_info(char *buffer, int buffer_size);
+extern int suspend_register_module(struct suspend_module_ops *module);
+extern void suspend_unregister_module(struct suspend_module_ops *module);
+
+extern int suspend2_initialise_modules(int starting_cycle);
+extern void suspend2_cleanup_modules(int finishing_cycle);
+
+int suspend2_get_modules(void);
+void suspend2_put_modules(void);
+
+static inline void suspend_initialise_module_lists(void) {
+	INIT_LIST_HEAD(&suspend_filters);
+	INIT_LIST_HEAD(&suspend_writers);
+	INIT_LIST_HEAD(&suspend_modules);
+}
+
+extern int expected_compression_ratio(void);


-- 
See our web page for Howtos, FAQs, the Wiki and mailing list info.
http://www.suspend2.net                IRC: #suspend2 on Freenode

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2006-02-01 12:48 UTC|newest]

Thread overview: 429+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-02-01 11:37 [ 00/10] [Suspend2] Modules support Nigel Cunningham
2006-02-01 11:37 ` [ 01/10] [Suspend2] kernel/power/modules.h Nigel Cunningham
2006-02-01 12:32   ` Pekka Enberg
2006-02-01 12:45     ` Nigel Cunningham [this message]
2006-02-01 13:01       ` Pekka Enberg
2006-02-01 21:30         ` Nigel Cunningham
2006-02-01 21:45           ` Pekka Enberg
2006-02-01 22:55             ` Nigel Cunningham
2006-02-02  8:31               ` Rafael J. Wysocki
2006-02-02  9:22                 ` Nigel Cunningham
2006-02-02 10:16                   ` Pavel Machek
2006-02-02 10:29                     ` Nigel Cunningham
2006-02-02 10:39                       ` Pavel Machek
2006-02-02 11:20                         ` Nigel Cunningham
2006-02-02 11:40                           ` Pavel Machek
2006-02-02 13:34                   ` Rafael J. Wysocki
2006-02-02 21:27                     ` Nigel Cunningham
2006-02-02 23:12                       ` Rafael J. Wysocki
2006-02-02  9:38                 ` Pavel Machek
2006-02-02 10:30                   ` Nigel Cunningham
2006-02-02 12:53                   ` Rafael J. Wysocki
2006-02-02 21:27                     ` Nigel Cunningham
2006-02-02 22:10                       ` Rafael J. Wysocki
2006-02-03  0:20                         ` Nigel Cunningham
2006-02-03  8:57                           ` Rafael J. Wysocki
2006-02-03 11:47                             ` Nigel Cunningham
2006-02-03 22:52                               ` Pavel Machek
2006-02-03 13:16                           ` Pavel Machek
2006-02-03 13:41                             ` Nigel Cunningham
2006-02-03 23:45                               ` Pavel Machek
2006-02-02 10:06             ` Pavel Machek
2006-02-02 10:57               ` Pekka Enberg
2006-02-02 11:02                 ` Pavel Machek
2006-02-02 11:16                   ` Pekka Enberg
2006-02-02 11:39                     ` Pavel Machek
2006-02-02 11:35         ` Nigel Cunningham
2006-02-02 11:44         ` Nigel Cunningham
2006-02-02 12:48           ` Pekka J Enberg
2006-02-02 21:27             ` Nigel Cunningham
2006-02-01 17:12       ` [ 01/10] [Suspend2] kernel/power/modules.h' Randy.Dunlap
2006-02-01 21:31         ` Nigel Cunningham
2006-02-02 11:35         ` Nigel Cunningham
2006-02-01 11:37 ` [ 02/10] [Suspend2] Module (de)registration Nigel Cunningham
2006-02-01 12:37   ` Pekka Enberg
2006-02-01 12:47     ` Nigel Cunningham
2006-02-02  9:54       ` Pavel Machek
2006-02-02 10:33         ` Nigel Cunningham
2006-02-01 11:37 ` [ 03/10] [Suspend2] Move module to the tail of lists Nigel Cunningham
2006-02-01 11:37 ` [ 04/10] [Suspend2] Module initialise/cleanup Nigel Cunningham
2006-02-01 11:37 ` [ 05/10] [Suspend2] Get next module Nigel Cunningham
2006-02-01 11:37 ` [ 06/10] [Suspend2] Get/put module reference Nigel Cunningham
2006-02-01 11:37 ` [ 07/10] [Suspend2] Header storage for modules Nigel Cunningham
2006-02-01 11:37 ` [ 08/10] [Suspend2] Find a module given its name Nigel Cunningham
2006-02-01 11:37 ` [ 09/10] [Suspend2] Append module debug info to a buffer Nigel Cunningham
2006-02-01 11:37 ` [ 10/10] [Suspend2] Memory needed for modules Nigel Cunningham
2006-02-01 12:38 ` [ 00/10] [Suspend2] Modules support Pekka Enberg
2006-02-01 12:49   ` Nigel Cunningham
2006-02-02 10:05 ` Pavel Machek
2006-02-02 10:38   ` Nigel Cunningham
2006-02-02 10:47     ` Pavel Machek
2006-02-02 11:31       ` Nigel Cunningham
2006-02-02 11:44         ` Pekka Enberg
2006-02-02 12:28           ` Nigel Cunningham
2006-02-02 13:26             ` Pekka J Enberg
2006-02-02 15:14             ` Pavel Machek
2006-02-02 15:43             ` Olivier Galibert
2006-02-02 20:25               ` Pavel Machek
2006-02-02 20:31                 ` Dave Jones
2006-02-02 20:51                   ` Pavel Machek
2006-02-03  1:18                     ` Olivier Galibert
2006-02-03 10:41                       ` Pavel Machek
2006-02-03 14:29                         ` Olivier Galibert
2006-02-03 17:24                           ` Rafael J. Wysocki
2006-02-03 18:30                             ` Olivier Galibert
2006-02-03 21:08                               ` Rafael J. Wysocki
2006-02-04  0:26                                 ` Olivier Galibert
2006-02-04  0:44                                   ` Pavel Machek
2006-02-03 22:36                           ` Pavel Machek
2006-02-02 11:59         ` Pavel Machek
2006-02-02 12:14           ` Nigel Cunningham
2006-02-02 15:23             ` Pavel Machek
2006-02-02 21:27               ` Andrew Morton
2006-02-02 21:34                 ` Lee Revell
2006-02-02 22:23                   ` Andrew Morton
2006-02-02 22:29                     ` Lee Revell
2006-02-02 22:48                       ` Andrew Morton
2006-02-03  1:48                       ` Olivier Galibert
2006-02-03  6:49                         ` Nigel Cunningham
2006-02-03 10:58                         ` Pavel Machek
2006-02-03  9:49                       ` Matthew Garrett
2006-02-03 10:23                         ` Andrew Morton
2006-02-03 10:43                           ` Matthew Garrett
2006-02-03 15:53                           ` Dave Jones
2006-02-03 11:08                         ` Pavel Machek
2006-02-03 10:51                     ` Pavel Machek
     [not found]                       ` <58cb370e0602030322u4c2c9f9bm21a38be6d35d2ea6@mail.gmail.com>
2006-02-03 11:35                         ` Pavel Machek
2006-02-03 13:46                           ` Bartlomiej Zolnierkiewicz
2006-02-03 14:10                             ` Matthew Garrett
2006-02-03 14:32                               ` Bartlomiej Zolnierkiewicz
2006-02-03 16:34                                 ` Randy.Dunlap
2006-02-03 16:44                                   ` Bartlomiej Zolnierkiewicz
2006-02-03 16:57                                     ` Randy.Dunlap
2006-02-03 18:46                                       ` Bartlomiej Zolnierkiewicz
2006-02-02 22:54                   ` Nigel Cunningham
2006-02-02 23:10                 ` Rafael J. Wysocki
2006-02-02 23:18                 ` Nigel Cunningham
2006-02-03  1:00                   ` [Suspend2-devel] " Bojan Smojver
2006-02-03  1:18                     ` Andrew Morton
2006-02-03  1:32                       ` Nigel Cunningham
2006-02-03  1:42                       ` Bojan Smojver
2006-02-03  9:18                         ` Rafael J. Wysocki
     [not found]                           ` <1138962557.18190.18.camel@coyote.rexursive.com>
     [not found]                             ` <200602031254.37335.rjw@sisk.pl>
2006-02-03 23:53                               ` Bojan Smojver
2006-02-03 11:49                         ` Pavel Machek
2006-02-03 23:43                           ` Bojan Smojver
2006-02-03 23:55                             ` Pavel Machek
2006-02-04  0:05                               ` Bojan Smojver
     [not found]                                 ` <20060204005310.GG3291@elf.ucw.cz>
2006-02-04  1:13                                   ` Bojan Smojver
2006-02-04  8:53                                     ` Pavel Machek
2006-02-04 10:08                                       ` Nigel Cunningham
2006-02-05 22:07                                         ` Pavel Machek
2006-02-04 13:59                                       ` Harald Arnesen
2006-02-05  3:06                                         ` Bojan Smojver
2006-02-05  2:59                                       ` Bojan Smojver
2006-02-04  0:36                               ` Olivier Galibert
2006-02-04  0:49                                 ` Pavel Machek
2006-02-04  1:08                                   ` Olivier Galibert
2006-02-04  1:23                                     ` Pavel Machek
2006-02-04  2:18                                       ` Bojan Smojver
2006-02-04 13:51                                       ` chroot in swsusp userland interface (was: Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.) Rafael J. Wysocki
2006-02-04 19:21                                         ` Pavel Machek
2006-02-04 19:57                                           ` Rafael J. Wysocki
2006-02-04 20:15                                             ` Pavel Machek
2006-02-04 20:45                                               ` Rafael J. Wysocki
2006-02-06  9:05                                             ` Bernard Blackham
2006-02-05 23:02                                         ` Nigel Cunningham
2006-02-06 15:13                                           ` Rafael J. Wysocki
2006-02-08 23:51                                             ` Nigel Cunningham
2006-02-03 11:44                   ` [ 00/10] [Suspend2] Modules support Pavel Machek
2006-02-03 23:42                     ` [Suspend2-devel] " Bojan Smojver
2006-02-04  1:20                     ` Nigel Cunningham
2006-02-04  9:01                       ` Pavel Machek
2006-02-04  9:54                         ` Nigel Cunningham
2006-02-04 10:58                           ` Rafael J. Wysocki
2006-02-04 11:08                             ` Nigel Cunningham
2006-02-04 11:38                               ` Rafael J. Wysocki
2006-02-04 11:41                                 ` Nigel Cunningham
2006-02-04 13:09                                   ` Rafael J. Wysocki
2006-02-04 17:18                                   ` Rafael J. Wysocki
2006-02-05 23:43                                     ` [Suspend2-devel] " Nigel Cunningham
2006-02-05 23:56                                       ` Rafael J. Wysocki
2006-02-06 21:07                                         ` Jim Crilly
2006-02-07  0:16                                           ` Nigel Cunningham
2006-02-07 15:16                                             ` Rafael J. Wysocki
2006-02-04 19:10                                 ` Pavel Machek
2006-02-05 23:44                                   ` [Suspend2-devel] " Nigel Cunningham
2006-02-06 10:13                                     ` Pavel Machek
2006-02-04 19:29                           ` Pavel Machek
2006-02-06  4:02                             ` Which is simpler? (Was Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.) Nigel Cunningham
2006-02-06  4:34                               ` Lee Revell
2006-02-06  5:43                                 ` Nigel Cunningham
2006-02-06 18:48                                   ` Lee Revell
2006-02-06 20:25                                     ` Nigel Cunningham
2006-02-06 23:51                                       ` Rafael J. Wysocki
2006-02-06 23:57                                         ` Nigel Cunningham
2006-02-07  0:29                                           ` Pavel Machek
2006-02-07  0:43                                             ` Nigel Cunningham
2006-02-07  0:31                                         ` Bojan Smojver
2006-02-07  0:44                                           ` Pavel Machek
2006-02-07  1:05                                             ` Nigel Cunningham
2006-02-07  2:20                                               ` Bojan Smojver
2006-02-07  9:23                                               ` Pavel Machek
2006-02-07 10:06                                                 ` Nigel Cunningham
2006-02-07 23:03                                                   ` Pavel Machek
2006-02-07 15:09                                               ` Rafael J. Wysocki
2006-02-07 22:13                                                 ` Nigel Cunningham
2006-02-07 23:05                                                   ` Pavel Machek
2006-02-07 23:13                                                     ` Nigel Cunningham
2006-02-07 23:17                                                     ` Nigel Cunningham
2006-02-07 23:36                                                       ` Pavel Machek
2006-02-07 23:50                                                       ` Rafael J. Wysocki
2006-02-07  0:37                                         ` Jim Crilly
2006-02-07  0:46                                           ` Pavel Machek
2006-02-07  0:59                                             ` Jim Crilly
2006-02-07  1:19                                               ` Lee Revell
2006-02-07  3:01                                                 ` Jim Crilly
2006-02-07  3:03                                                   ` Nigel Cunningham
2006-02-07  3:13                                                   ` Lee Revell
2006-02-07  3:26                                                     ` Nigel Cunningham
2006-02-07  9:37                                                     ` Pavel Machek
2006-02-07  9:40                                                       ` Nigel Cunningham
2006-02-07 23:02                                                         ` Pavel Machek
2006-02-07 23:11                                                           ` Nigel Cunningham
2006-02-08  6:59                                                             ` Rafael J. Wysocki
2006-02-08  7:33                                                               ` Nigel Cunningham
2006-02-08  8:15                                                                 ` Pavel Machek
2006-02-08 10:03                                                                 ` Rafael J. Wysocki
2006-02-08 12:08                                                                   ` Nigel Cunningham
2006-02-09  0:06                                                                     ` Pavel Machek
2006-02-09  2:45                                                                       ` Nigel Cunningham
2006-02-09  9:25                                                                         ` Pavel Machek
2006-02-09  9:26                                                                           ` Nigel Cunningham
2006-02-09 23:24                                                                             ` Pavel Machek
2006-02-11  0:16                                                                               ` Sebastian Kügler
2006-02-11  1:12                                                                                 ` Pavel Machek
2006-02-11 10:41                                                                                 ` Matthias Hensler
2006-02-18 14:26                                                                                   ` Pavel Machek
2006-02-19 21:09                                                                                     ` Nigel Cunningham
2006-02-19 21:29                                                                                       ` Pavel Machek
2006-02-20  0:24                                                                                         ` Nigel Cunningham
2006-02-20  0:53                                                                                           ` Pavel Machek
2006-02-20  2:50                                                                                             ` Nigel Cunningham
2006-02-20 12:53                                                                                               ` Pavel Machek
2006-02-20  9:47                                                                                             ` Matthias Hensler
2006-02-20 10:56                                                                                               ` Pavel Machek
2006-02-20 11:04                                                                                                 ` Nigel Cunningham
2006-02-20 13:20                                                                                                   ` Pavel Machek
2006-02-20 11:17                                                                                                 ` Matthias Hensler
2006-02-20 11:20                                                                                                   ` Pavel Machek
2006-02-21  4:32                                                                                               ` Andy Lutomirski
2006-02-21  4:45                                                                                                 ` Nigel Cunningham
2006-02-21 11:39                                                                                                   ` Pavel Machek
2006-02-21 11:33                                                                                                 ` Pavel Machek
2006-02-21 20:36                                                                                                   ` Rafael J. Wysocki
2006-02-20  9:43                                                                                         ` Matthias Hensler
2006-02-20 10:36                                                                                           ` Pavel Machek
2006-02-20 10:50                                                                                             ` Matthias Hensler
2006-02-20 10:54                                                                                               ` Pavel Machek
2006-02-20 11:17                                                                                                 ` Matthias Hensler
2006-02-20 13:08                                                                                                   ` Pavel Machek
2006-02-19 23:42                                                                                       ` suspend2 review [was Re: Which is simpler? (Was Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.)] Pavel Machek
     [not found]                                                                                         ` <200602191935.36844.dtor_core@ameritech.net>
2006-02-20  0:44                                                                                           ` Pavel Machek
2006-02-20  2:10                                                                                         ` Nigel Cunningham
2006-02-20 12:49                                                                                           ` Pavel Machek
2006-02-20 17:05                                                                                             ` Olivier Galibert
2006-02-20 17:10                                                                                               ` Pavel Machek
2006-02-20 18:31                                                                                                 ` Olivier Galibert
2006-02-20 19:43                                                                                                   ` Pavel Machek
2006-02-21 22:02                                                                                               ` Lee Revell
2006-02-21 22:17                                                                                                 ` Dmitry Torokhov
2006-02-21 22:21                                                                                                   ` Lee Revell
2006-02-21 23:55                                                                                                   ` Tristan Wibberley
2006-02-20  9:39                                                                                     ` Which is simpler? (Was Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.) Matthias Hensler
2006-02-20 10:02                                                                                       ` Lee Revell
2006-02-20 10:10                                                                                         ` Matthias Hensler
2006-02-20 10:15                                                                                           ` Lee Revell
2006-02-20 10:24                                                                                             ` Matthias Hensler
2006-02-20 10:44                                                                                             ` Nigel Cunningham
2006-02-20 13:37                                                                                               ` Pavel Machek
2006-02-20 10:37                                                                                         ` Nigel Cunningham
2006-02-20 13:30                                                                                           ` Pavel Machek
2006-02-20 14:01                                                                                         ` Dmitry Torokhov
2006-02-20 14:22                                                                                           ` Pavel Machek
2006-02-20 20:27                                                                                           ` Nigel Cunningham
2006-02-20 10:05                                                                                       ` Sebastian Kügler
2006-02-20 13:01                                                                                         ` Pavel Machek
2006-02-20 17:01                                                                                           ` Alon Bar-Lev
2006-02-20 19:12                                                                                           ` Henrik Brix Andersen
2006-02-20 19:51                                                                                             ` Theodore Ts'o
2006-02-20 20:08                                                                                               ` Pavel Machek
2006-02-20 20:36                                                                                                 ` Pavel Machek
2006-02-20 20:44                                                                                                 ` Nigel Cunningham
2006-02-20 20:59                                                                                                   ` Pavel Machek
2006-02-20 21:01                                                                                                     ` Nigel Cunningham
2006-02-20 10:06                                                                                       ` Lee Revell
2006-02-20 10:15                                                                                         ` Matthias Hensler
2006-02-20 10:24                                                                                           ` Lee Revell
2006-02-20 10:33                                                                                             ` Matthias Hensler
2006-02-20 11:15                                                                                               ` Lee Revell
2006-02-20 11:24                                                                                                 ` Nigel Cunningham
2006-02-20 13:23                                                                                                   ` Pavel Machek
2006-02-20 14:23                                                                                                     ` Mark Lord
2006-02-20 14:30                                                                                                       ` Pavel Machek
2006-02-20 14:41                                                                                                         ` Dmitry Torokhov
2006-02-20 14:54                                                                                                           ` Pavel Machek
2006-02-20 15:08                                                                                                             ` Dmitry Torokhov
2006-02-20 16:22                                                                                                               ` Rafael J. Wysocki
2006-02-20 16:30                                                                                                                 ` Dmitry Torokhov
2006-02-20 17:23                                                                                                                   ` Rafael J. Wysocki
2006-02-20 17:33                                                                                                                     ` Dmitry Torokhov
2006-02-20 18:19                                                                                                                       ` Rafael J. Wysocki
2006-02-20 19:46                                                                                                                 ` Lee Revell
2006-02-20 19:45                                                                                                             ` Lee Revell
2006-02-20 20:11                                                                                                               ` Rafael J. Wysocki
2006-02-20 20:15                                                                                                               ` Dmitry Torokhov
2006-02-20 20:30                                                                                                                 ` Rafael J. Wysocki
2006-02-20 20:40                                                                                                                 ` Lee Revell
2006-02-20 12:24                                                                                                 ` Matthias Hensler
2006-02-20 13:28                                                                                                   ` Pavel Machek
2006-02-20 13:51                                                                                                     ` Matthias Hensler
2006-02-20 14:07                                                                                                       ` Pavel Machek
2006-02-20 14:42                                                                                                         ` Matthias Hensler
2006-02-20 15:01                                                                                                           ` Pavel Machek
2006-02-22 16:15                                                                                                       ` agp fixes in suspend2 patch Thierry Vignaud
2006-02-23 19:04                                                                                                         ` Dave Jones
2006-02-20 14:08                                                                                                     ` Which is simpler? Harald Arnesen
2006-02-20 14:42                                                                                                       ` Pavel Machek
2006-02-20 14:49                                                                                                         ` Matthias Hensler
2006-02-20 14:56                                                                                                           ` Pavel Machek
2006-02-20 10:38                                                                                         ` Which is simpler? (Was Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.) Nigel Cunningham
2006-02-20 13:30                                                                                           ` Pavel Machek
2006-02-20 10:11                                                                                       ` Lee Revell
2006-02-20 10:20                                                                                         ` Matthias Hensler
2006-02-20 13:03                                                                                           ` Pavel Machek
2006-02-20 10:40                                                                                         ` Nigel Cunningham
2006-02-20 12:05                                                                                           ` Lee Revell
2006-02-20 12:26                                                                                             ` Matthias Hensler
2006-02-20 12:31                                                                                             ` Olivier Galibert
2006-02-20 14:13                                                                                               ` Rafael J. Wysocki
2006-02-20 15:39                                                                                                 ` Olivier Galibert
2006-02-20 16:27                                                                                                   ` Andreas Happe
2006-02-20 17:36                                                                                                     ` Olivier Galibert
2006-02-21  0:52                                                                                                       ` Andreas Happe
2006-02-21  2:57                                                                                                         ` Nigel Cunningham
2006-02-21  4:19                                                                                                           ` Dmitry Torokhov
2006-02-21  5:51                                                                                                             ` Nigel Cunningham
2006-02-21 12:27                                                                                                               ` Pavel Machek
2006-02-21 20:40                                                                                                             ` Rafael J. Wysocki
2006-02-21 21:00                                                                                                               ` Nigel Cunningham
2006-02-21 23:38                                                                                                                 ` Rafael J. Wysocki
2006-02-21 23:47                                                                                                                   ` Nigel Cunningham
2006-02-22 18:49                                                                                                                     ` Rafael J. Wysocki
2006-02-22 22:41                                                                                                                       ` Nigel Cunningham
2006-02-22 23:45                                                                                                                         ` Rafael J. Wysocki
2006-02-22 22:24                                                                                                                   ` Pavel Machek
2006-02-22 23:31                                                                                                                     ` Rafael J. Wysocki
2006-02-22 23:56                                                                                                                       ` Pavel Machek
2006-02-23  0:11                                                                                                                         ` Nigel Cunningham
2006-02-23  0:33                                                                                                                           ` Pavel Machek
2006-02-23  0:39                                                                                                                             ` Nigel Cunningham
2006-02-23  8:33                                                                                                                             ` Rafael J. Wysocki
2006-02-23  8:44                                                                                                                         ` Rafael J. Wysocki
2006-02-23 12:17                                                                                                                           ` Pavel Machek
2006-02-23 22:37                                                                                                                             ` Rafael J. Wysocki
2006-02-23 23:04                                                                                                                               ` Pavel Machek
2006-02-23 23:27                                                                                                                                 ` Nigel Cunningham
2006-02-23 23:44                                                                                                                                   ` Pavel Machek
2006-02-24 10:58                                                                                                                                     ` Rafael J. Wysocki
2006-02-24 13:12                                                                                                                                       ` Pavel Machek
2006-02-24 20:22                                                                                                                                         ` Rafael J. Wysocki
2006-02-24 23:11                                                                                                                                           ` Nigel Cunningham
2006-02-24 23:53                                                                                                                                             ` Pavel Machek
2006-02-25  0:15                                                                                                                                               ` Pavel Machek
2006-02-25  0:45                                                                                                                                                 ` Rafael J. Wysocki
2006-02-25  0:22                                                                                                                                               ` Nigel Cunningham
2006-02-25  0:43                                                                                                                                                 ` Pavel Machek
2006-02-25  0:20                                                                                                                                             ` Rafael J. Wysocki
2006-02-25  0:26                                                                                                                                               ` Nigel Cunningham
2006-02-25  0:46                                                                                                                                                 ` Pavel Machek
2006-02-25  0:56                                                                                                                                                 ` Rafael J. Wysocki
2006-02-25  5:13                                                                                                                                                   ` Nigel Cunningham
2006-02-24 23:55                                                                                                                                           ` Pavel Machek
2006-02-26 15:27                                                                                                                                             ` [RFC/RFT][PATCH -mm] swsusp: improve memory shrinking Rafael J. Wysocki
2006-02-26 18:53                                                                                                                                               ` Pavel Machek
2006-02-26 23:32                                                                                                                                                 ` Rafael J. Wysocki
2006-02-26 23:38                                                                                                                                                   ` Rafael J. Wysocki
2006-02-26 23:56                                                                                                                                                     ` Pavel Machek
2006-02-27  0:13                                                                                                                                                       ` Rafael J. Wysocki
2006-02-26 23:52                                                                                                                                                   ` Pavel Machek
2006-02-27  0:06                                                                                                                                                     ` Rafael J. Wysocki
2006-02-23 23:16                                                                                                                               ` Which is simpler? (Was Re: [Suspend2-devel] Re: [ 00/10] [Suspend2] Modules support.) Nigel Cunningham
2006-02-21 12:59                                                                                                           ` Which is simpler? (Was " Andreas Happe
2006-02-22  0:33                                                                                                             ` Nigel Cunningham
2006-02-20 16:41                                                                                                   ` Which is simpler? (Was Re: [Suspend2-devel] " Pavel Machek
2006-02-20 17:16                                                                                                   ` Rafael J. Wysocki
2006-02-20 18:16                                                                                                     ` Olivier Galibert
2006-02-20 19:36                                                                                                       ` Pavel Machek
2006-02-20 20:24                                                                                                       ` Rafael J. Wysocki
2006-02-20 12:56                                                                                       ` Pavel Machek
2006-02-09 13:22                                                                           ` Rafael J. Wysocki
2006-02-09 22:16                                                                             ` Nigel Cunningham
2006-02-09 23:34                                                                               ` Pavel Machek
2006-02-10  0:08                                                                                 ` Nigel Cunningham
2006-02-10 12:37                                                                                   ` Rafael J. Wysocki
2006-02-10 23:35                                                                                     ` Flames over -- " Pavel Machek
2006-02-11  8:53                                                                                       ` Kyle Moffett
2006-02-11 17:06                                                                                         ` hackmiester (Hunter Fuller)
2006-02-16 21:32                                                                                         ` Pavel Machek
2006-02-11 16:36                                                                                       ` Jan Merka
2006-02-11 22:18                                                                                         ` Theodoros V. Kalamatianos
2006-02-11 23:35                                                                                         ` Kyle Moffett
2006-02-12  8:51                                                                                           ` Alon Bar-Lev
2006-02-12 11:11                                                                                             ` Kyle Moffett
2006-02-12 12:06                                                                                               ` Alon Bar-Lev
2006-02-12 16:32                                                                                                 ` Kyle Moffett
2006-02-12 16:56                                                                                                   ` Valdis.Kletnieks
2006-02-12 18:28                                                                                                     ` Kyle Moffett
2006-02-13 12:12                                                                                                       ` Johannes Berg
2006-02-13 12:11                                                                                                   ` Johannes Berg
2006-02-16 21:53                                                                                                 ` Pavel Machek
2006-02-20  6:51                                                                                                   ` Nigel Cunningham
2006-02-12 16:42                                                                                             ` hackmiester / Hunter Fuller
2006-02-07 23:27                                                           ` Rafael J. Wysocki
2006-02-07 23:50                                                             ` Pavel Machek
2006-02-08  0:16                                                               ` Rafael J. Wysocki
2006-02-08  8:28                                                                 ` Pavel Machek
2006-02-08  9:43                                                                   ` Rafael J. Wysocki
2006-02-07 23:38                                                           ` Lee Revell
2006-02-07 23:50                                                           ` Jim Crilly
2006-02-07  3:17                                                   ` Lee Revell
2006-02-07  3:32                                                     ` Nigel Cunningham
2006-02-07  4:10                                                       ` Bojan Smojver
2006-02-07 11:01                                                       ` Henrik Brix Andersen
2006-02-07  9:33                                                     ` Pavel Machek
2006-02-07  9:36                                                       ` Nigel Cunningham
2006-02-07 22:57                                                         ` Pavel Machek
2006-02-07 10:17                                                       ` Nigel Cunningham
2006-02-07 15:47                                                       ` Lee Revell
2006-02-07 15:49                                                         ` Pavel Machek
2006-02-06 10:59                               ` Pavel Machek
2006-02-06 12:13                                 ` Nigel Cunningham
2006-02-06 12:40                                   ` Pavel Machek
2006-02-06 12:50                                     ` Jens Axboe
2006-02-06 12:52                                       ` Pavel Machek
2006-02-06 13:04                                         ` Jens Axboe
2006-02-06 13:45                                           ` Rafael J. Wysocki
2006-02-06 13:59                                             ` Jens Axboe
2006-02-06 14:24                                           ` Pavel Machek
2006-02-06 14:49                                 ` Mark Lord
2006-02-06 14:52                                   ` Pavel Machek
2006-02-07  0:20                                     ` Mark Lord
2006-02-07  0:23                                       ` Randy.Dunlap
     [not found]                   ` <200602100007.10233.rjw@sisk.pl>
     [not found]                     ` <20060209231459.GA3389@elf.ucw.cz>
     [not found]                       ` <200602100035.04969.rjw@sisk.pl>
     [not found]                         ` <20060210002406.GF8154@blackham.com.au>
     [not found]                           ` <20060210003533.GJ3389@elf.ucw.cz>
2006-02-11  8:55                             ` chroot in swsusp userland interface (was: " Bernard Blackham
2006-02-11  9:50                               ` Rafael J. Wysocki
2006-02-03 11:21                 ` [ 00/10] [Suspend2] Modules support Pavel Machek
2006-02-04  0:46                 ` Barry K. Nathan
2006-02-04 11:02                   ` Rafael J. Wysocki
2006-02-11 13:42                 ` Eric W. Biederman
2006-02-11 15:19                   ` Randy.Dunlap
2006-02-02 10:48     ` Pavel Machek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200602012245.06328.nigel@suspend2.net \
    --to=nigel@suspend2.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=penberg@cs.helsinki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox