Home
last modified time | relevance | path

Searched refs:FASYNC (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.15/include/uapi/asm-generic/
Dfcntl.h44 #ifndef FASYNC
45 #define FASYNC 00020000 /* fcntl, for BSD compatibility */ macro
/Linux-v5.15/tools/include/uapi/asm-generic/
Dfcntl.h43 #ifndef FASYNC
44 #define FASYNC 00020000 /* fcntl, for BSD compatibility */ macro
/Linux-v5.15/arch/sparc/include/uapi/asm/
Dfcntl.h6 #define FASYNC 0x0040 /* fcntl, for BSD compatibility */ macro
/Linux-v5.15/arch/mips/include/uapi/asm/
Dfcntl.h21 #define FASYNC 0x1000 /* fcntl, for BSD compatibility */ macro
/Linux-v5.15/include/linux/
Dfcntl.h12 FASYNC | O_DIRECT | O_LARGEFILE | O_DIRECTORY | O_NOFOLLOW | \
/Linux-v5.15/fs/
Dfcntl.c73 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) { in setfl()
74 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0); in setfl()
897 filp->f_flags &= ~FASYNC; in fasync_remove_entry()
950 filp->f_flags |= FASYNC; in fasync_insert_entry()
Dfile_table.c275 if (unlikely(file->f_flags & FASYNC)) { in __fput()
Dioctl.c377 flag = on ? FASYNC : 0; in ioctl_fioasync()
380 if ((flag ^ filp->f_flags) & FASYNC) { in ioctl_fioasync()
/Linux-v5.15/sound/core/
Dinit.c398 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync) in snd_disconnect_release()
/Linux-v5.15/fs/9p/
Dvfs_inode_dotl.c180 { FASYNC, P9_DOTL_FASYNC }, in v9fs_mapped_dotl_flags()
/Linux-v5.15/Documentation/filesystems/
Dlocking.rst561 ->fasync() is responsible for maintaining the FASYNC bit in filp->f_flags.