mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Nigel Cunningham <nigel@suspend2.net>
To: linux-kernel@vger.kernel.org
Subject: [Suspend2][ 09/35] [Suspend2] Get filewriter target info.
Date: Tue, 27 Jun 2006 08:39:33 +1000	[thread overview]
Message-ID: <20060626223932.4685.56666.stgit@nigel.suspend2.net> (raw)
In-Reply-To: <20060626223902.4685.52543.stgit@nigel.suspend2.net>

Given the name of a target (eg /dev/hda3, /my-suspend-file, /dev/ttyS0),
attempt to access it and discover the properties (inode, block size, dev_t,
first block, storage available) we need to work with it.

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

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

diff --git a/kernel/power/suspend_file.c b/kernel/power/suspend_file.c
index 7e06a06..6851977 100644
--- a/kernel/power/suspend_file.c
+++ b/kernel/power/suspend_file.c
@@ -278,3 +278,90 @@ static void reopen_resume_devt(void)
 	set_devinfo(filewriter_target_bdev, target_inode->i_blkbits);
 }
 
+static void filewriter_get_target_info(char *target, int get_size,
+		int resume2)
+{
+	if (target_file)
+		filewriter_cleanup(0);
+
+	if (!target || !strlen(target))
+		return;
+
+	target_file = filp_open(target, O_RDWR, 0);
+
+	if (IS_ERR(target_file) || !target_file) {
+
+		if (!resume2) {
+			printk("Open file %s returned %p.\n",
+					target, target_file);
+			target_file = NULL;
+			return;
+		}
+
+		target_file = NULL;
+		resume_dev_t = name_to_dev_t(target);
+		if (!resume_dev_t) {
+			printk("Open file %s returned %p and name_to_devt "
+					"failed.\n",
+					target, target_file);
+			if (!resume_dev_t) {
+				struct kstat stat;
+				int error = vfs_stat(target, &stat);
+				if (error) {
+					printk("Stating the file also failed."
+						" Nothing more we can do.\n");
+					return;
+				}
+				resume_dev_t = stat.rdev;
+			}
+			return;
+		}
+	     	filewriter_target_bdev = open_by_devnum(resume_dev_t, FMODE_READ);
+		if (IS_ERR(filewriter_target_bdev)) {
+			printk("Got a dev_num (%lx) but failed to open it.\n",
+					(unsigned long) resume_dev_t);
+			return;
+		}
+		used_devt = 1;
+		target_inode = filewriter_target_bdev->bd_inode;
+	} else
+		target_inode = target_file->f_mapping->host;
+
+	if (S_ISLNK(target_inode->i_mode) ||
+	    S_ISDIR(target_inode->i_mode) ||
+	    S_ISSOCK(target_inode->i_mode) ||
+	    S_ISFIFO(target_inode->i_mode)) {
+		printk("The filewriter works with regular files, character "
+				"files and block devices.\n");
+		goto cleanup;
+	}
+
+	if (!used_devt) {
+		if (S_ISBLK(target_inode->i_mode)) {
+			filewriter_target_bdev = I_BDEV(target_inode);
+			if (!bd_claim(filewriter_target_bdev, &filewriterops))
+				target_claim = 1;
+		} else
+			filewriter_target_bdev = target_inode->i_sb->s_bdev;
+		resume_dev_t = filewriter_target_bdev->bd_dev;
+	}
+
+	set_devinfo(filewriter_target_bdev, target_inode->i_blkbits);
+
+	if (get_size)
+		target_storage_available = size_ignoring_ignored_pages();
+
+	if (!resume2)
+		target_firstblock = bmap(target_inode, 0) << devinfo.bmap_shift;
+	
+	return;
+cleanup:
+	target_inode = NULL;
+	if (target_file) {
+		filp_close(target_file, NULL);
+		target_file = NULL;
+	}
+	set_devinfo(NULL, 0);
+	target_storage_available = 0;
+}
+

--
Nigel Cunningham		nigel at suspend2 dot net

  parent reply	other threads:[~2006-06-26 22:39 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-26 22:39 [Suspend2][ 00/35] Filewriter Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 01/35] [Suspend2] Header file for suspend_file.c Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 02/35] [Suspend2] Filewriter set_devinfo patch Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 03/35] [Suspend2] Get filewriter storage available Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 04/35] [Suspend2] Does a filewriter page have contiguous blocks? Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 05/35] [Suspend2] Filewriter storage available less ignored pages Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 06/35] [Suspend2] Filewriter populate block list Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 07/35] [Suspend2] Filewriter cleanup Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 08/35] [Suspend2] Reopen the resume dev_t Nigel Cunningham
2006-06-26 22:39 ` Nigel Cunningham [this message]
2006-06-26 22:39 ` [Suspend2][ 10/35] [Suspend2] Parse filewriter signature Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 11/35] [Suspend2] Set the filewriter signature to say we have an image Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 12/35] [Suspend2] Get filewriter storage allocated Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 13/35] [Suspend2] Release allocated filewriter storage Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 14/35] [Suspend2] Allocate filewriter header storage Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 15/35] [Suspend2] Allocate filewriter storage Nigel Cunningham
2006-06-26 22:39 ` [Suspend2][ 16/35] [Suspend2] Filewriter header writing init/cleanup Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 17/35] [Suspend2] Filewriter initrd image support Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 18/35] [Suspend2] Header reading initialisation specific to files Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 19/35] [Suspend2] Filewriter header reading initialisation Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 20/35] [Suspend2] Filewriter image header read cleanup Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 21/35] [Suspend2] Make modifications to the filewriter signature Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 22/35] [Suspend2] Filewriter debug info routine Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 23/35] [Suspend2] Filewriter storage needed Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 24/35] [Suspend2] Invalidate filewriter image Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 25/35] [Suspend2] Does a filewriter image exist? Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 26/35] [Suspend2] Filewriter mark that attempted to resume Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 27/35] [Suspend2] Set filewriter resume2, having been given a filename Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 28/35] [Suspend2] Test filewriter target value helper Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 29/35] [Suspend2] Test filewriter target Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 30/35] [Suspend2] Filewriter parse resume2 parameter Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 31/35] [Suspend2] Serialise filewriter config in image header Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 32/35] [Suspend2] Filewriter initialise Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 33/35] [Suspend2] Filewriter proc data Nigel Cunningham
2006-06-26 22:40 ` [Suspend2][ 34/35] [Suspend2] Filewriter ops Nigel Cunningham
2006-06-26 22:41 ` [Suspend2][ 35/35] [Suspend2] Filewriter load/unload routines 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=20060626223932.4685.56666.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