FAQ Search Today's Posts Mark Forums Read

» Linux Archive
Home
New Posts
Search
FAQ


Go Back   Linux Archive > Redhat > Cluster Development

 
 
LinkBack Thread Tools
 
Old 07-25-2008, 08:38 PM
 
Default Cluster Project branch, STABLE2, updated. cluster-2.03.05-24-gf6a63c9

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=f6a63c92a2 4b867347491ba90fc1a80256efc08c

The branch, STABLE2 has been updated
via f6a63c92a24b867347491ba90fc1a80256efc08c (commit)
from 8ac81e012926ef4b9466f8b19cf161f0a7d04838 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f6a63c92a24b867347491ba90fc1a80256efc08c
Author: Ryan O'Hara <rohara@redhat.com>
Date: Fri Jul 25 14:38:13 2008 -0500

gfs_mkfs: change the way we check to see if a device is mounted

New method will attempt to open device with O_EXCL flag. If open()
responds with EBUSY, mkfs will die. This indicates that the device
is either mounted or part of a LVM volume. (BZ #426298)

-----------------------------------------------------------------------

Summary of changes:
gfs/gfs_mkfs/main.c | 29 +++++++++++++++--------------
1 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/gfs/gfs_mkfs/main.c b/gfs/gfs_mkfs/main.c
index 0dc75b4..87316c7 100644
--- a/gfs/gfs_mkfs/main.c
+++ b/gfs/gfs_mkfs/main.c
@@ -229,30 +229,31 @@ void are_you_sure(commandline_t *comline)


/**
- * check_mount -
+ * check_mount - check to see if device is mounted/busy
* @
*
*/

void check_mount(char *device)
{
- struct mntent *mnt;
- FILE *fp;
+ struct stat st_buf;
+ int fd;

- if ((fp = setmntent("/proc/mounts", "r")) == NULL) {
- die("error opening /proc/mounts");
- }
+ if (stat(device, &st_buf) < 0)
+ die("could not stat device %s
", device);
+ if (!S_ISBLK(st_buf.st_mode))
+ die("%s is not a block device
", device);
+
+ fd = open(device, O_RDONLY | O_NONBLOCK | O_EXCL);

- while ((mnt = getmntent(fp)) != NULL) {
- if (strcmp(device, mnt->mnt_fsname) == 0) {
- printf("cannot create filesystem: ");
- printf("%s appears to be mounted
", device);
- endmntent(fp);
- exit(EXIT_FAILURE);
+ if (fd < 0) {
+ if (errno == EBUSY) {
+ die("device %s is busy
", device);
}
}
-
- endmntent(fp);
+ else {
+ close(fd);
+ }

return;
}


hooks/post-receive
--
Cluster Project
 

Thread Tools




All times are GMT. The time now is 08:38 AM.

VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2007 - 2008, www.linux-archive.org