Home
last modified time | relevance | path

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

/openbmc/qemu/bsd-user/
H A Dsignal.c660 struct sigaction act1; in do_sigaction() local
691 memset(&act1, 0, sizeof(struct sigaction)); in do_sigaction()
692 sigfillset(&act1.sa_mask); in do_sigaction()
693 act1.sa_flags = SA_SIGINFO; in do_sigaction()
695 act1.sa_flags |= SA_RESTART; in do_sigaction()
702 act1.sa_sigaction = (void *)SIG_IGN; in do_sigaction()
705 act1.sa_sigaction = host_signal_handler; in do_sigaction()
707 act1.sa_sigaction = (void *)SIG_DFL; in do_sigaction()
710 act1.sa_sigaction = host_signal_handler; in do_sigaction()
712 ret = sigaction(host_sig, &act1, NULL); in do_sigaction()
/openbmc/qemu/linux-user/
H A Dsignal.c1143 struct sigaction act1; in do_sigaction() local
1145 sigfillset(&act1.sa_mask); in do_sigaction()
1146 act1.sa_flags = SA_SIGINFO; in do_sigaction()
1152 act1.sa_sigaction = (void *)SIG_IGN; in do_sigaction()
1155 act1.sa_sigaction = host_signal_handler; in do_sigaction()
1157 act1.sa_sigaction = (void *)SIG_DFL; in do_sigaction()
1160 act1.sa_sigaction = host_signal_handler; in do_sigaction()
1162 act1.sa_flags |= SA_RESTART; in do_sigaction()
1165 ret = sigaction(host_sig, &act1, NULL); in do_sigaction()
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dfs_core.c1730 static bool check_conflicting_actions(const struct mlx5_flow_act *act1, in check_conflicting_actions() argument
1733 u32 action1 = act1->action; in check_conflicting_actions()
1755 act1->pkt_reformat != act2->pkt_reformat) in check_conflicting_actions()
1759 act1->modify_hdr != act2->modify_hdr) in check_conflicting_actions()
1763 check_conflicting_actions_vlan(&act1->vlan[0], &act2->vlan[0])) in check_conflicting_actions()
1767 check_conflicting_actions_vlan(&act1->vlan[1], &act2->vlan[1])) in check_conflicting_actions()