mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-12 14:55:04 +07:00
![Stephen Rothwell](/assets/img/avatar_default.png)
This patch puts the most popular of each fcntl operation/flag into asm-generic/fcntl.h and cleans up the arch files. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
15 lines
209 B
C
15 lines
209 B
C
#ifndef _X86_64_FCNTL_H
|
|
#define _X86_64_FCNTL_H
|
|
|
|
struct flock {
|
|
short l_type;
|
|
short l_whence;
|
|
off_t l_start;
|
|
off_t l_len;
|
|
pid_t l_pid;
|
|
};
|
|
|
|
#include <asm-generic/fcntl.h>
|
|
|
|
#endif /* !_X86_64_FCNTL_H */
|