cmogstored dev/user discussion/issues/patches/etc
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] cmogstored 1.6.0 - a mogstored alternative
@ 2016-08-31 16:46  7% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2016-08-31 16:46 UTC (permalink / raw)
  To: mogile, cmogstored-public

cmogstored is an alternative implementation of the "mogstored" storage
component of MogileFS.  cmogstored is implemented in C and does not use
Perl at runtime.  cmogstored is the only component you need to install
on a MogileFS storage node.

    cmogstored 1.6.0 - minor fixes on allocation errors

    There are minor robustness fixes on handling errors when
    allocating memory or spawn failures on otherwise-hosed systems.
    These bugfixes will not affect real users unless the system
    is already hosed or in badly overtaxed, so there's no real
    need to upgrade.

    There are minor portability improvements and I now test under
    FreeBSD 10.x.

    The iostat test cases are relaxed a bit to account for
    virtualized devices (as iostat is less useful with modern

    17 changes since 1.5.0 (Nov 2015):
          Rakefile: add missing <div> for Atom feed
          test/pwrite-wrap: remove unused variable and comment
          test/pwrite_wrap: squelch unnecessary output
          test/pwrite_wrap: reduce space overhead required
          update copyrights for 2016
          build-aux/txt2pre: drop CGI.pm requirement
          stdin is always redirected to /dev/null
          minor vfork/fork safety fixes
          process: try to handle OOM gracefully
          http_put: gracefully handle path allocation errors
          iostat_process: declare environ extern
          test/mgmt: relax checks for iostat mapping
          gnulib copyright update for 2016
          upgrade: avoid syslog call if execve fails
          rely on gnulib for environ portability
          INSTALL: update latest Debian stable version to 8.x
          README: stop mentioning cgit

http://bogomips.org/cmogstored/files/cmogstored-1.6.0.tar.gz
SHA-1: b35767444a9a993ee2c25c27192de7152a041682
SHA-256: f50d3449f3cdf8e6b67a77e42c6fc2055a7708090a52a7bebd601e3827e8a22f

* homepage: http://bogomips.org/cmogstored/README
* git clone git://bogomips.org/cmogstored.git
* git clone http://bogomips.org/cmogstored.git
* gitweb: http://repo.or.cz/w/cmogstored.git
* list: cmogstored-public@bogomips.org (subscription optional)
* archives: http://bogomips.org/cmogstored-public/
* nntp://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored

^ permalink raw reply	[relevance 7%]

* [PATCH] rely on gnulib for environ portability
@ 2016-07-18  7:37  6% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2016-07-18  7:37 UTC (permalink / raw)
  To: cmogstored-public

This avoids warnings on my GNU system while still working on
FreeBSD.
---
 configure.ac       | 2 ++
 iostat_process.c   | 1 -
 m4/gnulib-cache.m4 | 3 ++-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 1a94fa4..22f6d9c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,6 +29,8 @@ gl_WARN_ADD([-Werror=pointer-arith])
 gl_WARN_ADD([-Werror-implicit-function-declaration])
 gl_WARN_ADD([-Werror=declaration-after-statement]) dnl I hate C99 for this :P
 gl_WARN_ADD([-ggdb3],[CFLAGS])
+gl_ENVIRON
+gl_UNISTD_MODULE_INDICATOR([environ])
 AX_PTHREAD(true)
 CM_GCC_ATOMICS(true)
 AC_SYS_LARGEFILE
diff --git a/iostat_process.c b/iostat_process.c
index 65acd22..9f98077 100644
--- a/iostat_process.c
+++ b/iostat_process.c
@@ -8,7 +8,6 @@
  * regardless of the number of mog_svc objects we have.
  */
 #include "cmogstored.h"
-extern char **environ;
 
 static pid_t iostat_pid;
 static time_t iostat_last_fail;
diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4
index f50dae3..9cdd8fb 100644
--- a/m4/gnulib-cache.m4
+++ b/m4/gnulib-cache.m4
@@ -27,7 +27,7 @@
 
 
 # Specification in the form of a command-line invocation:
-#   gnulib-tool --import --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --with-tests --avoid=accept --avoid=accept4 --avoid=alloca --avoid=fstatat --avoid=getcwd --avoid=ioctl --avoid=openat --avoid=read --avoid=sleep --avoid=write --no-conditional-dependencies --no-libtool --macro-prefix=gl argp base64 canonicalize crypto/gc-md5 crypto/gc-sha1 dprintf error findprog gettime git-version-gen hash mempcpy minmax mountlist nonblocking nproc pipe2 progname random_r verify warnings xvasprintf
+#   gnulib-tool --import --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --with-tests --avoid=accept --avoid=accept4 --avoid=alloca --avoid=fstatat --avoid=getcwd --avoid=ioctl --avoid=openat --avoid=read --avoid=sleep --avoid=write --no-conditional-dependencies --no-libtool --macro-prefix=gl argp base64 canonicalize crypto/gc-md5 crypto/gc-sha1 dprintf environ error findprog gettime git-version-gen hash mempcpy minmax mountlist nonblocking nproc pipe2 progname random_r verify warnings xvasprintf
 
 # Specification in the form of a few gnulib-tool.m4 macro invocations:
 gl_LOCAL_DIR([])
@@ -38,6 +38,7 @@ gl_MODULES([
   crypto/gc-md5
   crypto/gc-sha1
   dprintf
+  environ
   error
   findprog
   gettime
-- 
EW


^ permalink raw reply related	[relevance 6%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2016-07-18  7:37  6% [PATCH] rely on gnulib for environ portability Eric Wong
2016-08-31 16:46  7% [ANN] cmogstored 1.6.0 - a mogstored alternative Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/cmogstored.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).