mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-02-09 00:33:22 +03:00
![Tomohiro Kusumi](/assets/img/avatar_default.png)
Apply umask to `mode` which will eventually be applied to inode. This is needed since VFS doesn't apply umask for O_TMPFILE files. (Note that zpl_init_acl() applies `ip->i_mode &= ~current_umask();` only when POSIX ACL is used.) Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com> Closes #8997 Closes #8998
17 lines
501 B
Makefile
17 lines
501 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
|
|
|
|
dist_pkgdata_SCRIPTS = \
|
|
cleanup.ksh \
|
|
setup.ksh
|
|
|
|
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
|
|
|
|
pkgexec_PROGRAMS = tmpfile_test tmpfile_001_pos tmpfile_002_pos \
|
|
tmpfile_003_pos tmpfile_stat_mode
|
|
tmpfile_test_SOURCES= tmpfile_test.c
|
|
tmpfile_001_pos_SOURCES = tmpfile_001_pos.c
|
|
tmpfile_002_pos_SOURCES = tmpfile_002_pos.c
|
|
tmpfile_003_pos_SOURCES = tmpfile_003_pos.c
|