Searched refs:O_EXCL (Results 51 - 61 of 61) sorted by relevance

123

/linux-master/fs/smb/client/
H A Dfile.c241 if (flags & O_EXCL)
243 } else if (flags & O_EXCL)
244 cifs_dbg(FYI, "Application %s pid %d has incorrectly set O_EXCL flag but not O_CREAT on file open. Ignoring O_EXCL\n",
265 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
368 * O_CREAT | O_EXCL FILE_CREATE
1014 * O_CREAT, O_EXCL and O_TRUNC already had their effect on the
1018 ~(O_CREAT | O_EXCL | O_TRUNC);
/linux-master/fs/fuse/
H A Ddir.c652 !(flags & O_EXCL) && !capable(CAP_FSETID)) {
691 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
H A Dfile.c33 inarg.flags = open_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
/linux-master/tools/testing/selftests/nolibc/
H A Dnolibc-test.c1080 fd = open("/tmp", O_TMPFILE | O_EXCL | O_RDWR, 0600);
/linux-master/fs/gfs2/
H A Dinode.c1292 bool excl = !!(flags & O_EXCL);
/linux-master/fs/ceph/
H A Dfile.c45 ceph_sys2wire(O_EXCL);
375 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
376 flags = file->f_flags & ~(O_CREAT|O_EXCL);
/linux-master/fs/nfs/
H A Dnfs4proc.c1525 if (open_mode & (O_EXCL|O_TRUNC))
2499 if (data->o_arg.open_flags & O_EXCL) {
2503 /* don't put an ACCESS op in OPEN compound if O_EXCL,
2715 if (o_arg->open_flags & O_EXCL)
3198 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
H A Ddir.c1527 * an O_EXCL create using this path component.
2310 int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
/linux-master/tools/testing/selftests/mm/
H A Dhmm-tests.c225 fd = open(path, O_TMPFILE | O_EXCL | O_RDWR, 0600);
/linux-master/tools/perf/util/
H A Dsymbol-elf.c2031 kcore->fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0400);
/linux-master/drivers/infiniband/core/
H A Duverbs_cmd.c600 if (xrcd && cmd.oflags & O_EXCL) {

Completed in 187 milliseconds

123