X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Futils%2Flr_reader.c;h=5748d162225e4aecaaecb8a57e09eab43adad621;hb=80ac0f4ee600d5a0b8d818843562d9328fef2ef0;hp=b44d6b55d3980824d68ef2df5777276a971b8e3b;hpb=70e80ade90af09300396706b8910e196a7928520;p=fs%2Flustre-release.git diff --git a/lustre/utils/lr_reader.c b/lustre/utils/lr_reader.c index b44d6b5..5748d16 100644 --- a/lustre/utils/lr_reader.c +++ b/lustre/utils/lr_reader.c @@ -16,8 +16,8 @@ * in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU General Public License - * version 2 along with this program; If not, see [sun.com URL with a - * copy of GPLv2]. + * version 2 along with this program; If not, see + * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or @@ -26,7 +26,7 @@ * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. */ /* @@ -39,6 +39,10 @@ */ /* Safely read the last_rcvd file from a device */ +#if HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif @@ -122,8 +126,8 @@ int main(int argc, char *const argv[]) memset(cmd, 0, sizeof(cmd)); sprintf(cmd, - "debugfs -c -R 'dump /%s %s/%s' %s", - LAST_RCVD, tmpdir, LAST_RCVD, dev); + "%s -c -R 'dump /%s %s/%s' %s", + DEBUGFS, LAST_RCVD, tmpdir, LAST_RCVD, dev); ret = run_command(cmd); if (ret) { @@ -193,8 +197,8 @@ int main(int argc, char *const argv[]) /* Construct debugfs command line. */ memset(cmd, 0, sizeof(cmd)); sprintf(cmd, - "debugfs -c -R 'rdump /%s %s' %s", - MDT_LOGS_DIR, tmpdir, dev); + "%s -c -R 'rdump /%s %s' %s", + DEBUGFS, MDT_LOGS_DIR, tmpdir, dev); run_command(cmd);