Home
last modified time | relevance | path

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

/linux-5.19.10/tools/include/uapi/asm-generic/
Dfcntl.h44 #ifndef FASYNC
45 #define FASYNC 00020000 /* fcntl, for BSD compatibility */ macro
/linux-5.19.10/include/uapi/asm-generic/
Dfcntl.h44 #ifndef FASYNC
45 #define FASYNC 00020000 /* fcntl, for BSD compatibility */ macro
/linux-5.19.10/arch/mips/include/uapi/asm/
Dfcntl.h21 #define FASYNC 0x1000 /* fcntl, for BSD compatibility */ macro
/linux-5.19.10/arch/sparc/include/uapi/asm/
Dfcntl.h6 #define FASYNC 0x0040 /* fcntl, for BSD compatibility */ macro
/linux-5.19.10/include/linux/
Dfcntl.h12 FASYNC | O_DIRECT | O_LARGEFILE | O_DIRECTORY | O_NOFOLLOW | \
/linux-5.19.10/fs/
Dfcntl.c72 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) { in setfl()
73 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0); in setfl()
878 filp->f_flags &= ~FASYNC; in fasync_remove_entry()
931 filp->f_flags |= FASYNC; in fasync_insert_entry()
Dioctl.c373 flag = on ? FASYNC : 0; in ioctl_fioasync()
376 if ((flag ^ filp->f_flags) & FASYNC) { in ioctl_fioasync()
Dfile_table.c312 if (unlikely(file->f_flags & FASYNC)) { in __fput()
/linux-5.19.10/sound/core/
Dinit.c426 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync) in snd_disconnect_release()
/linux-5.19.10/fs/9p/
Dvfs_inode_dotl.c178 { FASYNC, P9_DOTL_FASYNC }, in v9fs_mapped_dotl_flags()
/linux-5.19.10/Documentation/filesystems/
Dlocking.rst560 ->fasync() is responsible for maintaining the FASYNC bit in filp->f_flags.