From mboxrd@z Thu Jan 1 00:00:00 1970 From: cfeist@sourceware.org Date: 20 Jul 2007 18:06:34 -0000 Subject: [Cluster-devel] cluster/gfs2/mkfs main_mkfs.c Message-ID: <20070720180634.15260.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Branch: RHEL51 Changes by: cfeist at sourceware.org 2007-07-20 18:06:33 Modified files: gfs2/mkfs : main_mkfs.c Log message: Revert patch to check if filesystem was in use. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/mkfs/main_mkfs.c.diff?cvsroot=cluster&only_with_tag=RHEL51&r1=1.8.2.7&r2=1.8.2.7.2.1 --- cluster/gfs2/mkfs/main_mkfs.c 2007/07/10 19:18:44 1.8.2.7 +++ cluster/gfs2/mkfs/main_mkfs.c 2007/07/20 18:06:33 1.8.2.7.2.1 @@ -23,7 +23,6 @@ #include #include #include -#include #include #include "libgfs2.h" @@ -284,38 +283,6 @@ } /** - * check_mount - check to see if device is mounted - * @device: the device to create the filesystem on - * - */ - -void check_mount(char *device) -{ - struct mntent *mnt; - FILE *fp; - - if ((fp = setmntent("/proc/mounts", "r")) == NULL) { - die("error opening /proc/mounts"); - } - - while ((mnt = getmntent(fp)) != NULL) { - if (strcmp(device, mnt->mnt_fsname) == 0) { - printf("cannot create filesystem: "); - printf("%s appears to be mounted\n", device); - break; - } - } - - endmntent(fp); - - if (fp != NULL) { - exit(EXIT_FAILURE); - } - - return; -} - -/** * print_results - print out summary information * @sdp: the command line * @@ -390,8 +357,6 @@ verify_arguments(sdp); - check_mount(sdp->device_name); - sdp->device_fd = open(sdp->device_name, O_RDWR); if (sdp->device_fd < 0) die("can't open device %s: %s\n",