From: Nigel Cunningham <nigel@suspend2.net>
To: linux-kernel@vger.kernel.org
Subject: [Suspend2][ 01/32] [Suspend2] Block I/O Header File
Date: Tue, 27 Jun 2006 08:37:09 +1000 [thread overview]
Message-ID: <20060626223708.4376.9487.stgit@nigel.suspend2.net> (raw)
In-Reply-To: <20060626223706.4376.96042.stgit@nigel.suspend2.net>
kernel/power/block_io.h is the header file for the lowlevel block i/o code.
It defines the operations that the swapwriter and filewriter use to
actually perform the I/O.
Signed-off-by: Nigel Cunningham <nigel@suspend2.net>
kernel/power/block_io.h | 55 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/kernel/power/block_io.h b/kernel/power/block_io.h
new file mode 100644
index 0000000..2e89ca2
--- /dev/null
+++ b/kernel/power/block_io.h
@@ -0,0 +1,55 @@
+/*
+ * kernel/power/block_io.h
+ *
+ * Copyright 2004-2006 Nigel Cunningham <nigel@suspend2.net>
+ *
+ * Distributed under GPLv2.
+ *
+ * This file contains declarations for functions exported from
+ * block_io.c, which contains low level io functions.
+ */
+
+#include <linux/buffer_head.h>
+#include "extent.h"
+
+struct suspend_bdev_info {
+ struct block_device *bdev;
+ dev_t dev_t;
+ int bmap_shift;
+ int blocks_per_page;
+};
+
+/*
+ * Our exported interface so the swapwriter and filewriter don't
+ * need these functions duplicated.
+ */
+struct suspend_bio_ops {
+ int (*bdev_page_io) (int rw, struct block_device *bdev, long pos,
+ struct page *page);
+ void (*check_io_stats) (void);
+ void (*reset_io_stats) (void);
+ void (*finish_all_io) (void);
+ int (*prepare_readahead) (int index);
+ void (*cleanup_readahead) (int index);
+ struct page ** readahead_pages;
+ int (*readahead_ready) (int readahead_index);
+ int (*forward_one_page) (void);
+ void (*set_extra_page_forward) (void);
+ void (*set_devinfo) (struct suspend_bdev_info *info);
+ int (*read_chunk) (struct page *buffer_page, int sync);
+ int (*write_chunk) (struct page *buffer_page);
+ int (*rw_header_chunk) (int rw, struct suspend_module_ops *owner,
+ char *buffer, int buffer_size);
+ int (*write_header_chunk_finish) (void);
+ int (*rw_init) (int rw, int stream_number);
+ int (*rw_cleanup) (int rw);
+};
+
+extern struct suspend_bio_ops suspend_bio_ops;
+
+extern char *suspend_writer_buffer;
+extern int suspend_writer_buffer_posn;
+extern int suspend_read_fd;
+extern struct extent_iterate_saved_state suspend_writer_posn_save[3];
+extern struct extent_iterate_state suspend_writer_posn;
+extern int suspend_header_bytes_used;
--
Nigel Cunningham nigel at suspend2 dot net
next prev parent reply other threads:[~2006-06-26 23:18 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-26 22:37 [Suspend2][ 00/32] Block i/o patches Nigel Cunningham
2006-06-26 22:37 ` Nigel Cunningham [this message]
2006-06-26 22:37 ` [Suspend2][ 02/32] [Suspend2] Block io c file header Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 03/32] [Suspend2] Reset block io stats Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 04/32] [Suspend2] Check the " Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 05/32] [Suspend2] Cleanup one page Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 06/32] [Suspend2] Cleanup some completed I/O Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 07/32] [Suspend2] Wait for bio completion Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 08/32] [Suspend2] Finish and cleanup all outstanding I/O Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 09/32] [Suspend2] Wait on a particular page Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 10/32] [Suspend2] Wait on readahead Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 11/32] [Suspend2] Test whether readahead is ready Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 12/32] [Suspend2] Prepare & cleanup readahead pages Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 13/32] [Suspend2] Suspend bio completion Nigel Cunningham
2006-06-26 22:37 ` [Suspend2][ 14/32] [Suspend2] Submit io on a page Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 15/32] [Suspend2] Submit batched i/o Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 16/32] [Suspend2] Add page io to a batch Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 17/32] [Suspend2] Get an io_info struct Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 18/32] [Suspend2] Prepare to do i/o on a page Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 19/32] [Suspend2] Do " Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 20/32] [Suspend2] Return memory needed for block io Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 21/32] [Suspend2] Set device info Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 22/32] [Suspend2] Move forward extra blocks in a page Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 23/32] [Suspend2] Advance one page in the extent state Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 24/32] [Suspend2] Set extra page forward flag Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 25/32] [Suspend2] Do io on a page in the image proper Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 26/32] [Suspend2] Read a page of the image Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 27/32] [Suspend2] Init and cleanup routines for pageset i/o Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 28/32] [Suspend2] Write a page in the image proper Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 29/32] [Suspend2] Read or write a chunk of the header Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 30/32] [Suspend2] Finish writing an image header Nigel Cunningham
2006-06-26 22:38 ` [Suspend2][ 31/32] [Suspend2] Suspend block io ops Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 32/32] [Suspend2] Module ops for the block i/o functions Nigel Cunningham
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=20060626223708.4376.9487.stgit@nigel.suspend2.net \
--to=nigel@suspend2.net \
--cc=linux-kernel@vger.kernel.org \
/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
Powered by JetHome