4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
28 * Copyright (c) 2012 by Delphix. All rights reserved.
33 * Create two directory trees in zfs filesystem, and rename
34 * directory across the directory structure. ZFS can handle
39 * Need to create the following directory structures before
40 * running this program:
42 * mkdir -p 1/2/3/4/5 a/b/c/d/e
64 if (rename("a/b/c", "1/2/3/c") == 0)
66 if (rename("1/2/3/c", "a/b/c") == 0)
69 (void) fprintf(stderr
, "c_count: %d", c_count
);
76 if (rename("1", "a/b/c/d/e/1") == 0)
78 if (rename("a/b/c/d/e/1", "1") == 0)
81 (void) fprintf(stderr
, "p_count: %d", p_count
);