Home | History | Annotate | Download | only in mountns

Lines Matching refs:DIRA

58 	if (access(DIRA"/B", F_OK) == -1)
63 /* bind mounts DIRB to DIRA making contents of DIRB visible
64 * in DIRA */
65 if (mount(DIRB, DIRA, "none", MS_BIND, NULL) == -1) {
72 umount(DIRA);
86 /* bind mounts DIRA to itself */
87 SAFE_MOUNT(cleanup, DIRA, DIRA, "none", MS_BIND, NULL);
89 /* makes mount DIRA shared */
90 SAFE_MOUNT(cleanup, "none", DIRA, "none", MS_SHARED, NULL);
95 /* bind mounts DIRB to DIRA making contents of DIRB visible
96 * in DIRA */
97 SAFE_MOUNT(cleanup, DIRB, DIRA, "none", MS_BIND, NULL);
101 SAFE_UMOUNT(cleanup, DIRA);
105 if (access(DIRA"/B", F_OK) == 0)
126 SAFE_UMOUNT(cleanup, DIRA);