Home
last modified time | relevance | path

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

/linux-5.19.10/fs/ecryptfs/
Dcrypto.c834 static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = { variable
854 for (i = 0; i < ARRAY_SIZE(ecryptfs_flag_map); i++) in ecryptfs_process_flags()
855 if (flags & ecryptfs_flag_map[i].file_flag) { in ecryptfs_process_flags()
856 crypt_stat->flags |= ecryptfs_flag_map[i].local_flag; in ecryptfs_process_flags()
858 crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag); in ecryptfs_process_flags()
890 for (i = 0; i < ARRAY_SIZE(ecryptfs_flag_map); i++) in ecryptfs_write_crypt_stat_flags()
891 if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag) in ecryptfs_write_crypt_stat_flags()
892 flags |= ecryptfs_flag_map[i].file_flag; in ecryptfs_write_crypt_stat_flags()