Hi. On Wed, 2005-07-06 at 22:01, Pekka Enberg wrote: > On 7/6/05, Nigel Cunningham <[EMAIL PROTECTED]> wrote: > > diff -ruNp 614-plugins.patch-old/kernel/power/suspend2_core/plugins.c > > 614-plugins.patch-new/kernel/power/suspend2_core/plugins.c > > --- 614-plugins.patch-old/kernel/power/suspend2_core/plugins.c 1970-01-01 > > 10:00:00.000000000 +1000 > > +++ 614-plugins.patch-new/kernel/power/suspend2_core/plugins.c 2005-07-04 > > 23:14:19.000000000 +1000 > > @@ -0,0 +1,341 @@ > > +#define FILTER_PLUGIN 1 > > +#define WRITER_PLUGIN 2 > > +#define MISC_PLUGIN 4 // Block writer, eg. > > +#define CHECKSUM_PLUGIN 5 > > + > > +#define SUSPEND_ASYNC 0 > > +#define SUSPEND_SYNC 1 > > Enums are preferred. > > > + > > +#define SUSPEND_COMMON_IO_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 plugin if image exists but reading aborted */ \ > > + void (*noresume_reset) (void); > > Please remove the above macro obfuscation.
Done. Thanks! Nigel -- Evolution. Enumerate the requirements. Consider the interdependencies. Calculate the probabilities. Be amazed that people believe it happened. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/