Whamcloud - gitweb
LU-11631 mdd: migrate symlink for cross-MDT rename
[fs/lustre-release.git] / lustre / tests / createtest.c
index d9d4234..17008a8 100644 (file)
@@ -1,6 +1,4 @@
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
- *
+/*
  * GPL HEADER START
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * 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.
+ * http://www.gnu.org/licenses/gpl-2.0.html
  *
  * GPL HEADER END
  */
 /*
- * Copyright  2008 Sun Microsystems, Inc. All rights reserved
+ * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  */
 /*
@@ -67,7 +61,7 @@ int main(int argc, char *argv[])
                int mode = i | 0644;
                int rc;
 
-               sprintf(name, "%s-mknod%07o", argv[1], mode);
+               snprintf(name, sizeof(name), "%s-mknod%07o", argv[1], mode);
                rc = mknod(name, mode, 0x1234);
                switch (i) {
                case 0:
@@ -96,9 +90,9 @@ int main(int argc, char *argv[])
                        if (i == S_IFCHR || i == S_IFBLK) {
                                if (st.st_rdev != 0x1234) {
                                        fprintf(stderr, "%s: ERROR rdev %s: "
-                                               "%lu != 0x1234",
+                                               "%llu != 0x1234",
                                                argv[0], name,
-                                               (long unsigned int)st.st_rdev);
+                                               (unsigned long long)st.st_rdev);
                                        exit(13);
                                }
                        }
@@ -125,7 +119,7 @@ int main(int argc, char *argv[])
                int rc;
 
                mode = i | 0644;
-               sprintf(name, "%s-creat%07o", argv[1], mode);
+               snprintf(name, sizeof(name), "%s-creat%07o", argv[1], mode);
                fd = open(name, O_CREAT|O_RDONLY, mode);
                if (fd < 0) {
                        fprintf(stderr, "%s: ERROR creat %s: %s\n",
@@ -156,7 +150,7 @@ int main(int argc, char *argv[])
                struct stat st;
                int rc;
 
-               sprintf(name, "%s-mkdir%06o", argv[1], i | 0644);
+               snprintf(name, sizeof(name), "%s-mkdir%06o", argv[1], i | 0644);
                rc = mkdir(name, i | 0664);
                if (rc < 0) {
                        fprintf(stderr, "%s: ERROR mkdir %s: %s\n",