Home
last modified time | relevance | path

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

/openbmc/linux/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_tlv.c640 static void fm10k_tlv_msg_test_generate_data(u32 *msg, u32 attr_flags) in fm10k_tlv_msg_test_generate_data() argument
642 if (attr_flags & BIT(FM10K_TEST_MSG_STRING)) in fm10k_tlv_msg_test_generate_data()
645 if (attr_flags & BIT(FM10K_TEST_MSG_MAC_ADDR)) in fm10k_tlv_msg_test_generate_data()
648 if (attr_flags & BIT(FM10K_TEST_MSG_U8)) in fm10k_tlv_msg_test_generate_data()
650 if (attr_flags & BIT(FM10K_TEST_MSG_U16)) in fm10k_tlv_msg_test_generate_data()
652 if (attr_flags & BIT(FM10K_TEST_MSG_U32)) in fm10k_tlv_msg_test_generate_data()
654 if (attr_flags & BIT(FM10K_TEST_MSG_U64)) in fm10k_tlv_msg_test_generate_data()
656 if (attr_flags & BIT(FM10K_TEST_MSG_S8)) in fm10k_tlv_msg_test_generate_data()
658 if (attr_flags & BIT(FM10K_TEST_MSG_S16)) in fm10k_tlv_msg_test_generate_data()
660 if (attr_flags & BIT(FM10K_TEST_MSG_S32)) in fm10k_tlv_msg_test_generate_data()
[all …]
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_attr.h550 bool xfs_attr_check_namespace(unsigned int attr_flags);
551 bool xfs_attr_namecheck(unsigned int attr_flags, const void *name,
H A Dxfs_attr.c1098 if (args->attr_flags & XATTR_CREATE) in xfs_attr_set()
1109 if (args->attr_flags & XATTR_REPLACE) in xfs_attr_set()
1541 inline bool xfs_attr_check_namespace(unsigned int attr_flags) in xfs_attr_check_namespace() argument
1543 return hweight32(attr_flags & XFS_ATTR_NSP_ONDISK_MASK) < 2; in xfs_attr_check_namespace()
1549 unsigned int attr_flags, in xfs_attr_namecheck() argument
1554 if (!xfs_attr_check_namespace(attr_flags)) in xfs_attr_namecheck()
H A Dxfs_da_btree.h63 unsigned int attr_flags; /* XATTR_{CREATE,REPLACE} */ member
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_tc.h122 mlx5e_tc_attr_flags_skip(u32 attr_flags) in mlx5e_tc_attr_flags_skip() argument
124 return attr_flags & (MLX5_ATTR_FLAG_SLOW_PATH | MLX5_ATTR_FLAG_ACCEPT); in mlx5e_tc_attr_flags_skip()
/openbmc/linux/drivers/net/wireless/ath/ath12k/
H A Dce.h144 unsigned int attr_flags; member
H A Dce.c588 pipe->attr_flags = attr->flags; in ath12k_ce_alloc_pipe()
634 if ((pipe->attr_flags & CE_ATTR_DIS_INTR) && pipe->send_cb) in ath12k_ce_poll_send_completed()
654 if (pipe->attr_flags & CE_ATTR_DIS_INTR) { in ath12k_ce_send()
699 if (pipe->attr_flags & CE_ATTR_BYTE_SWAP_DATA) in ath12k_ce_send()
/openbmc/linux/drivers/net/wireless/ath/ath11k/
H A Dce.h171 unsigned int attr_flags; member
H A Dce.c658 pipe->attr_flags = attr->flags; in ath11k_ce_alloc_pipe()
706 if ((pipe->attr_flags & CE_ATTR_DIS_INTR) && attr->src_nentries) in ath11k_ce_poll_send_completed()
727 if (pipe->attr_flags & CE_ATTR_DIS_INTR) { in ath11k_ce_send()
772 if (pipe->attr_flags & CE_ATTR_BYTE_SWAP_DATA) in ath11k_ce_send()
/openbmc/linux/drivers/net/wireless/ath/ath10k/
H A Dce.c149 (ce_state->attr_flags & CE_ATTR_DIS_INTR)) in ath10k_ce_src_ring_read_index_get()
262 (ce_state->attr_flags & CE_ATTR_DIS_INTR)) in ath10k_ce_dest_ring_read_index_get()
1293 bool disable_copy_compl_intr = ce_state->attr_flags & CE_ATTR_DIS_INTR; in ath10k_ce_per_engine_handler_adjust()
1311 if (ce_state->attr_flags & CE_ATTR_POLL) in ath10k_ce_disable_interrupt()
1337 if (ce_state->attr_flags & CE_ATTR_POLL) in ath10k_ce_enable_interrupt()
1892 ce_state->attr_flags = attr->flags; in ath10k_ce_alloc_pipe()
H A Dce.h120 unsigned int attr_flags; member
/openbmc/linux/fs/xfs/
H A Dxfs_xattr.c154 .attr_flags = flags, in xfs_xattr_set()
H A Dxfs_ioctl.c477 .attr_flags = xfs_attr_flags(flags), in xfs_attrmulti_attr_get()
511 .attr_flags = xfs_attr_flags(flags), in xfs_attrmulti_attr_set()
H A Dxfs_trace.h1985 __field(unsigned int, attr_flags)
1997 __entry->attr_flags = args->attr_flags;
2011 __print_flags(__entry->attr_flags, "|",
/openbmc/linux/fs/
H A Dnamespace.c3924 static unsigned int attr_flags_to_mnt_flags(u64 attr_flags) in attr_flags_to_mnt_flags() argument
3928 if (attr_flags & MOUNT_ATTR_RDONLY) in attr_flags_to_mnt_flags()
3930 if (attr_flags & MOUNT_ATTR_NOSUID) in attr_flags_to_mnt_flags()
3932 if (attr_flags & MOUNT_ATTR_NODEV) in attr_flags_to_mnt_flags()
3934 if (attr_flags & MOUNT_ATTR_NOEXEC) in attr_flags_to_mnt_flags()
3936 if (attr_flags & MOUNT_ATTR_NODIRATIME) in attr_flags_to_mnt_flags()
3938 if (attr_flags & MOUNT_ATTR_NOSYMFOLLOW) in attr_flags_to_mnt_flags()
3949 unsigned int, attr_flags) in SYSCALL_DEFINE3() argument
3966 if (attr_flags & ~FSMOUNT_VALID_FLAGS) in SYSCALL_DEFINE3()
3969 mnt_flags = attr_flags_to_mnt_flags(attr_flags); in SYSCALL_DEFINE3()
[all …]
/openbmc/linux/drivers/s390/crypto/
H A Dzcrypt_ccamisc.c593 u16 attr_flags; in cca_sec2protkey() member
598 u16 attr_flags; in cca_sec2protkey() member
608 u16 attr_flags; in cca_sec2protkey() member
640 preqparm->lv1.attr_flags = 0x0001; in cca_sec2protkey()
644 preqparm->lv2.attr_flags = 0x0000; in cca_sec2protkey()
/openbmc/qemu/hw/cxl/
H A Dcxl-mailbox-utils.c996 uint32_t attr_flags; member
1143 .attr_flags = CXL_FEAT_ENTRY_ATTR_FLAG_CHANGABLE, in cmd_features_get_supported()
1158 .attr_flags = CXL_FEAT_ENTRY_ATTR_FLAG_CHANGABLE, in cmd_features_get_supported()