Displaying 7 results from an estimated 7 matches for "rawdev".
Did you mean:
radev
2016 Jul 07
2
[PATCH 1/2] daemon: free the string on stringsbuf add failure
...add_string (&ret, "") == -1)
return NULL;
diff --git a/daemon/devsparts.c b/daemon/devsparts.c
index 7c690f8..41c728c 100644
--- a/daemon/devsparts.c
+++ b/daemon/devsparts.c
@@ -311,7 +311,6 @@ do_list_disk_labels (void)
{
DIR *dir = NULL;
struct dirent *d;
- char *rawdev = NULL;
DECLARE_STRINGSBUF (ret);
dir = opendir (GUESTFSDIR);
@@ -330,6 +329,7 @@ do_list_disk_labels (void)
errno = 0;
while ((d = readdir (dir)) != NULL) {
CLEANUP_FREE char *path = NULL;
+ char *rawdev;
if (d->d_name[0] == '.')
continue;
@@ -347,12...
2004 Apr 28
1
Cannot delete directories
...can do?
[root@delphi1 tmp]# ls -l /oradata/u02
total 514
drwxr-xr-x 1 oracle dba 131072 Feb 4 2003 bogus
drwxr-xr-x 1 oracle dba 131072 Mar 12 10:15 rac10
drwxr-xr-x 1 oracle dba 131072 Mar 31 08:41 racdb
drwxr-xr-x 1 root root 131072 Mar 26 11:47 rawdevs
[root@delphi1 tmp]# ls -l /oradata/u02/rac10
total 0
[root@delphi1 tmp]# ls -al /oradata/u02/rac10
total 65665
drwxr-xr-x 1 oracle dba 131072 Mar 12 10:15 .
drwxrwxr-x 1 oracle dba 131072 Mar 29 12:49 ..
[root@delphi1 tmp]# rmdir /oradata/u02/rac10
rmdir: `/oradata/u02/r...
2012 Oct 08
3
[PATCH v3 0/3] Add support for disk labels and hotplugging.
This is, I guess, version 3 of this patch series which adds disk
labels and hotplugging (only hot-add implemented so far).
The good news is .. it works!
Rich.
2016 Jul 07
0
[PATCH 2/2] daemon: fix cleanup of stringsbuf usages
...opendir (GUESTFSDIR);
if (!dir) {
@@ -336,14 +328,12 @@ do_list_disk_labels (void)
if (asprintf (&path, "%s/%s", GUESTFSDIR, d->d_name) == -1) {
reply_with_perror ("asprintf");
- free_stringslen (ret.argv, ret.size);
goto error;
}
rawdev = realpath (path, NULL);
if (rawdev == NULL) {
reply_with_perror ("realpath: %s", path);
- free_stringslen (ret.argv, ret.size);
goto error;
}
@@ -359,14 +349,12 @@ do_list_disk_labels (void)
/* Check readdir didn't fail */
if (errno != 0) {
r...
2012 Oct 08
5
[PATCH v4 0/5] Finish hotplugging support.
This rounds off hotplugging support by allowing you to add and remove
drives at any stage (before and after launch).
Rich.
2004 Jul 03
1
samba+obsd+subnets
...fd0 at fdc0 drive 0: 1.44MB 80 cyl, 2 head, 18 sec
biomask c860 netmask cc60 ttymask dce2
pctr: user-level cycle counter enabled
Kernelized RAIDframe activated
dkcsum: wd0 matched BIOS disk 80
dkcsum: wd1 matched BIOS disk 81
dkcsum: wd2 matched BIOS disk 82
root on wd0a
rootdev=0x0 rrootdev=0x300 rawdev=0x302
raid0: Component /dev/wd1a being configured at row: 0 col: 0
Row: 0 Column: 0 Num Rows: 1 Num Columns: 2
Version: 2 Serial Number: 12345 Mod Counter: 207
Clean: Yes Status: 0
raid0: Component /dev/wd2a being configured at row: 0 col: 1
Row: 0 Column: 1 Num...
2002 Sep 14
0
p.s. regarding stripchart missing-data report (PR#2019)
...s greater than the right answer, you
#get a 1 and if not, you get a 0. So if we take the avg of these across the
#2-3 numbers versions that a given Ss got, we get a mean for "how often was
#nprob > right ans".
summary(lm(toohigh.sm ~ minrisk.numbers.sm+worry.numbers.sm+sex+educ))
rawdev.sm <- apply(nprob.m-rightans.m,1,mean,na.rm=T)
lm16 <- lm(toohigh.sm ~
stai.score+lot.score+educ+denial.score+sex+truste.score+minrisk.numbers.sm+exagg.numbers.sm+QOL.numbers.sm
+worry.numbers.sm+trust.numbers.sm+comfort.numbers.sm+mss.m.score+mss.b.score)
anova(lm16)
lm17 <- lm(toohigh...