search for: chunk_

Displaying 4 results from an estimated 4 matches for "chunk_".

Did you mean: chunks
2011 Nov 24
1
[PATCH] Rename mdadm_ apis to md_
...vel, "stripe") && STRNEQ (level, "raid1") && STRNEQ (level, "1") && @@ -100,7 +100,7 @@ do_mdadm_create (const char *name, char *const *devices, else level = "raid1"; - if (optargs_bitmask & GUESTFS_MDADM_CREATE_CHUNK_BITMASK) { + if (optargs_bitmask & GUESTFS_MD_CREATE_CHUNK_BITMASK) { /* chunk is bytes in the libguestfs API, but K when we pass it to mdadm */ if ((chunk & 1023) != 0) { reply_with_error ("chunk size must be a multiple of 1024 bytes"); @@ -131,12 +131,12 @@ do_m...
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...