Whamcloud - gitweb
LU-6910 osp: add procfs values for OST reserved size
[fs/lustre-release.git] / lustre / tests / checkstat.c
index acfdfa8..8128bc2 100644 (file)
@@ -1,3 +1,44 @@
+/*
+ * GPL HEADER START
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License version 2 for more details (a copy is included
+ * 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
+ * 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
+ * have any questions.
+ *
+ * GPL HEADER END
+ */
+/*
+ * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Use is subject to license terms.
+ *
+ * Copyright (c) 2011, Intel Corporation.
+ */
+/*
+ * Test program to compare the attributes of a files to verify that it
+ * desired file attributes are present.  This file predates availability
+ * of the stat(3) utility and is deprecated.  Either test(3) ([ ]) or
+ * stat(3) should be used in all new tests.
+ *
+ * This file is part of Lustre, http://www.lustre.org/
+ * Lustre is a trademark of Sun Microsystems, Inc.
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/types.h>
@@ -90,34 +131,15 @@ main (int argc, char **argv)
                                        fprintf (stderr, "Can't parse numeric uid %s\n", optarg);
                                        return (1);
                                }
-                       }else {
-                               int i,flag=0;
-                               char * temp ;
-                               temp = optarg;
-                               for(i=0;i<strlen(optarg);i++)
-                               {
-                                       if(!isdigit(*temp))     
-                                       {
-                                               flag=1;
-                                               break;
-                                       }
-                                       else
-                                               temp++; 
-                               }
-                               if(flag)
+                       } else {
+                               struct passwd *pw = getpwnam (optarg);
+
+                               if (pw == NULL)
                                {
-                                      struct passwd *pw = getpwnam (optarg);
-
-                                       if (pw == NULL)
-                                       {
-                                               fprintf (stderr, "Can't find user %s\n", optarg);
-                                               return (1);
-                                       }
-                                       uid = pw->pw_uid;
-       
+                                       fprintf (stderr, "Can't find user %s\n", optarg);
+                                       return (1);
                                }
-                               else
-                                       uid=(uid_t)atol(optarg);
+                               uid = pw->pw_uid;
                        }
                        break;
 
@@ -259,20 +281,18 @@ main (int argc, char **argv)
                                        fname, perms);
                }
 
-               if (size != -1)
-               {
-                       if (buf.st_size != size)
-                       {
-                               if (verbose)
-                                       printf ("%s has size %Ld, not %Ld\n",
-                                               fname, (long long)buf.st_size,
-                                               size);
-                               return (1);
-                       }
-
-                       if (verbose)
-                               printf ("%s has size %Ld OK\n", fname, size);
-               }
+                if (size != -1) {
+                        if (buf.st_size != size) {
+                                if (verbose)
+                                        printf("%s has size %lld, not %lld\n",
+                                               fname, (long long)buf.st_size,
+                                               size);
+                                return 1;
+                        }
+
+                        if (verbose)
+                                printf("%s has size %lld OK\n", fname, size);
+                }
 
                if (checklink != NULL)
                {