Displaying 4 results from an estimated 4 matches for "chunk_s".
2011 Nov 24
1
[PATCH] Rename mdadm_ apis to md_
...uot;);
snprintf (spare_s, sizeof spare_s, "%d", spare);
ADD_ARG (argv, i, spare_s);
}
- if (optargs_bitmask & GUESTFS_MDADM_CREATE_CHUNK_BITMASK) {
+ if (optargs_bitmask & GUESTFS_MD_CREATE_CHUNK_BITMASK) {
ADD_ARG (argv, i, "--chunk");
snprintf (chunk_s, sizeof chunk_s, "%" PRIi64, chunk / 1024);
ADD_ARG (argv, i, chunk_s);
@@ -233,7 +233,7 @@ error:
}
char **
-do_mdadm_detail(const char *md)
+do_md_detail(const char *md)
{
int r;
@@ -290,7 +290,7 @@ do_mdadm_detail(const char *md)
} else {
/* Ignore lines with...
2001 Jan 20
2
Makefile.am patch
Since vorbiscomment is being resurrected in a new form, can someone please
fix the vorbis-tools/vorbiscomment/Makefile.am?
There's two things wrong:
1. Using _LDFLAGS doesn't allow the user to specify their own LDFLAGS.
_LDADD or _LIBS should be used instead.
2. The order of libraries is wrong such that it won't link properly when
compiled statically.
Here's a trivial
2011 Nov 11
3
[PATCH v2] Add mdadm-create, list-md-devices APIs.
This adds the mdadm-create API for creating RAID devices, and
includes various fixes for the other two patches.
Rich.
2001 Feb 11
0
compilation issues
...used instead.
See http://www.xiph.org/archives/vorbis-dev/200101/0380.html and
http://www.xiph.org/archives/vorbis/200012/0183.html. The short version
is: pathconf() should be used instead of NAME_MAX.
-- "buffer.c", line 57: warning: assignment type mismatch:
volatile pointer to struct chunk_s {long len, array[4096] of char data}
Self explanitory.
-- In Solaris (and others), connect/socket are in libsocket.a, and
gethostbyname is in libnsl.a. Need to add "-lnsl -lsocket" to the link
lines for Solaris. This is probably best added in the vorbis-tools
top-level configure.in in...