Coverage Report

Created: 2025-07-01 06:50

/src/openvswitch/lib/ovs-atomic-flag-gcc4.7+.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2013, 2014 Nicira, Inc.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at:
7
 *
8
 *     http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
17
/* This header implements atomic_flag on Clang and on GCC 4.7 and later. */
18
#ifndef IN_OVS_ATOMIC_H
19
#error "This header should only be included indirectly via ovs-atomic.h."
20
#endif
21
22
/* atomic_flag */
23
24
typedef struct {
25
    unsigned char b;
26
} atomic_flag;
27
#define ATOMIC_FLAG_INIT { .b = false }
28
29
static inline bool
30
atomic_flag_test_and_set_explicit(volatile atomic_flag *object,
31
                                  memory_order order)
32
0
{
33
0
    return __atomic_test_and_set(&object->b, order);
34
0
}
Unexecuted instantiation: miniflow_target.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dp-packet.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: flow.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ofp-util.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovs-rcu.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovs-router.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovs-thread.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: packets.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: poll-loop.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: pvector.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: random.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: seq.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: socket-util.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: timeval.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: tnl-ports.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: tun-metadata.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: unixctl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: userspace-tso.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: util.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: uuid.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: vlog.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev-linux.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev-offload-tc.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netlink-socket.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: route-table.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: tc.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: async-append-aio.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dirs.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: classifier.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ccmap.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: cmap.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: command-line.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: connectivity.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: coverage.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dp-packet-gso.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: fatal-signal.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: guarded-list.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: hmap.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: jsonrpc.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: meta-flow.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev-offload.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev-vport.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netlink.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: nx-match.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: odp-execute.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: odp-execute-private.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: odp-util.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ofp-actions.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ofp-monitor.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ofp-msgs.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovs-replay.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: stream.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: tnl-neigh-cache.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netdev-native-tnl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: daemon-unix.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: stream-unix.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netlink.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netlink-rtnl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netlink-conntrack.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: netlink-notifier.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: stream-ssl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: conntrack.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: daemon.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-private-dfc.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-private-dpif.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-private-extract.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-perf.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: fat-rwlock.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: hindex.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: id-fpool.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ipf.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: learn.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: lockfile.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: mpsc-queue.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovs-numa.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: process.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: stream-replay.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpdk-stub.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: vswitch-idl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: conntrack-icmp.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: conntrack-tcp.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: conntrack-tp.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: conntrack-other.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-extract-study.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-lookup.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: dpif-netdev-lookup-generic.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovsdb-data.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovsdb-idl.c:atomic_flag_test_and_set_explicit
Unexecuted instantiation: ovsdb-types.c:atomic_flag_test_and_set_explicit
35
36
static inline bool
37
atomic_flag_test_and_set(volatile atomic_flag *object)
38
0
{
39
0
    return atomic_flag_test_and_set_explicit(object, memory_order_seq_cst);
40
0
}
Unexecuted instantiation: miniflow_target.c:atomic_flag_test_and_set
Unexecuted instantiation: dp-packet.c:atomic_flag_test_and_set
Unexecuted instantiation: flow.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev.c:atomic_flag_test_and_set
Unexecuted instantiation: ofp-util.c:atomic_flag_test_and_set
Unexecuted instantiation: ovs-rcu.c:atomic_flag_test_and_set
Unexecuted instantiation: ovs-router.c:atomic_flag_test_and_set
Unexecuted instantiation: ovs-thread.c:atomic_flag_test_and_set
Unexecuted instantiation: packets.c:atomic_flag_test_and_set
Unexecuted instantiation: poll-loop.c:atomic_flag_test_and_set
Unexecuted instantiation: pvector.c:atomic_flag_test_and_set
Unexecuted instantiation: random.c:atomic_flag_test_and_set
Unexecuted instantiation: seq.c:atomic_flag_test_and_set
Unexecuted instantiation: socket-util.c:atomic_flag_test_and_set
Unexecuted instantiation: timeval.c:atomic_flag_test_and_set
Unexecuted instantiation: tnl-ports.c:atomic_flag_test_and_set
Unexecuted instantiation: tun-metadata.c:atomic_flag_test_and_set
Unexecuted instantiation: unixctl.c:atomic_flag_test_and_set
Unexecuted instantiation: userspace-tso.c:atomic_flag_test_and_set
Unexecuted instantiation: util.c:atomic_flag_test_and_set
Unexecuted instantiation: uuid.c:atomic_flag_test_and_set
Unexecuted instantiation: vlog.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev-linux.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev-offload-tc.c:atomic_flag_test_and_set
Unexecuted instantiation: netlink-socket.c:atomic_flag_test_and_set
Unexecuted instantiation: route-table.c:atomic_flag_test_and_set
Unexecuted instantiation: tc.c:atomic_flag_test_and_set
Unexecuted instantiation: async-append-aio.c:atomic_flag_test_and_set
Unexecuted instantiation: dirs.c:atomic_flag_test_and_set
Unexecuted instantiation: classifier.c:atomic_flag_test_and_set
Unexecuted instantiation: ccmap.c:atomic_flag_test_and_set
Unexecuted instantiation: cmap.c:atomic_flag_test_and_set
Unexecuted instantiation: command-line.c:atomic_flag_test_and_set
Unexecuted instantiation: connectivity.c:atomic_flag_test_and_set
Unexecuted instantiation: coverage.c:atomic_flag_test_and_set
Unexecuted instantiation: dp-packet-gso.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif.c:atomic_flag_test_and_set
Unexecuted instantiation: fatal-signal.c:atomic_flag_test_and_set
Unexecuted instantiation: guarded-list.c:atomic_flag_test_and_set
Unexecuted instantiation: hmap.c:atomic_flag_test_and_set
Unexecuted instantiation: jsonrpc.c:atomic_flag_test_and_set
Unexecuted instantiation: meta-flow.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev-offload.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev-vport.c:atomic_flag_test_and_set
Unexecuted instantiation: netlink.c:atomic_flag_test_and_set
Unexecuted instantiation: nx-match.c:atomic_flag_test_and_set
Unexecuted instantiation: odp-execute.c:atomic_flag_test_and_set
Unexecuted instantiation: odp-execute-private.c:atomic_flag_test_and_set
Unexecuted instantiation: odp-util.c:atomic_flag_test_and_set
Unexecuted instantiation: ofp-actions.c:atomic_flag_test_and_set
Unexecuted instantiation: ofp-monitor.c:atomic_flag_test_and_set
Unexecuted instantiation: ofp-msgs.c:atomic_flag_test_and_set
Unexecuted instantiation: ovs-replay.c:atomic_flag_test_and_set
Unexecuted instantiation: stream.c:atomic_flag_test_and_set
Unexecuted instantiation: tnl-neigh-cache.c:atomic_flag_test_and_set
Unexecuted instantiation: netdev-native-tnl.c:atomic_flag_test_and_set
Unexecuted instantiation: daemon-unix.c:atomic_flag_test_and_set
Unexecuted instantiation: stream-unix.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netlink.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netlink-rtnl.c:atomic_flag_test_and_set
Unexecuted instantiation: netlink-conntrack.c:atomic_flag_test_and_set
Unexecuted instantiation: netlink-notifier.c:atomic_flag_test_and_set
Unexecuted instantiation: stream-ssl.c:atomic_flag_test_and_set
Unexecuted instantiation: conntrack.c:atomic_flag_test_and_set
Unexecuted instantiation: daemon.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-private-dfc.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-private-dpif.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-private-extract.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-perf.c:atomic_flag_test_and_set
Unexecuted instantiation: fat-rwlock.c:atomic_flag_test_and_set
Unexecuted instantiation: hindex.c:atomic_flag_test_and_set
Unexecuted instantiation: id-fpool.c:atomic_flag_test_and_set
Unexecuted instantiation: ipf.c:atomic_flag_test_and_set
Unexecuted instantiation: learn.c:atomic_flag_test_and_set
Unexecuted instantiation: lockfile.c:atomic_flag_test_and_set
Unexecuted instantiation: mpsc-queue.c:atomic_flag_test_and_set
Unexecuted instantiation: ovs-numa.c:atomic_flag_test_and_set
Unexecuted instantiation: process.c:atomic_flag_test_and_set
Unexecuted instantiation: stream-replay.c:atomic_flag_test_and_set
Unexecuted instantiation: dpdk-stub.c:atomic_flag_test_and_set
Unexecuted instantiation: vswitch-idl.c:atomic_flag_test_and_set
Unexecuted instantiation: conntrack-icmp.c:atomic_flag_test_and_set
Unexecuted instantiation: conntrack-tcp.c:atomic_flag_test_and_set
Unexecuted instantiation: conntrack-tp.c:atomic_flag_test_and_set
Unexecuted instantiation: conntrack-other.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-extract-study.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-lookup.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:atomic_flag_test_and_set
Unexecuted instantiation: dpif-netdev-lookup-generic.c:atomic_flag_test_and_set
Unexecuted instantiation: ovsdb-data.c:atomic_flag_test_and_set
Unexecuted instantiation: ovsdb-idl.c:atomic_flag_test_and_set
Unexecuted instantiation: ovsdb-types.c:atomic_flag_test_and_set
41
42
static inline void
43
atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order)
44
0
{
45
0
    __atomic_clear(object, order);
46
0
}
Unexecuted instantiation: miniflow_target.c:atomic_flag_clear_explicit
Unexecuted instantiation: dp-packet.c:atomic_flag_clear_explicit
Unexecuted instantiation: flow.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev.c:atomic_flag_clear_explicit
Unexecuted instantiation: ofp-util.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovs-rcu.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovs-router.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovs-thread.c:atomic_flag_clear_explicit
Unexecuted instantiation: packets.c:atomic_flag_clear_explicit
Unexecuted instantiation: poll-loop.c:atomic_flag_clear_explicit
Unexecuted instantiation: pvector.c:atomic_flag_clear_explicit
Unexecuted instantiation: random.c:atomic_flag_clear_explicit
Unexecuted instantiation: seq.c:atomic_flag_clear_explicit
Unexecuted instantiation: socket-util.c:atomic_flag_clear_explicit
Unexecuted instantiation: timeval.c:atomic_flag_clear_explicit
Unexecuted instantiation: tnl-ports.c:atomic_flag_clear_explicit
Unexecuted instantiation: tun-metadata.c:atomic_flag_clear_explicit
Unexecuted instantiation: unixctl.c:atomic_flag_clear_explicit
Unexecuted instantiation: userspace-tso.c:atomic_flag_clear_explicit
Unexecuted instantiation: util.c:atomic_flag_clear_explicit
Unexecuted instantiation: uuid.c:atomic_flag_clear_explicit
Unexecuted instantiation: vlog.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev-linux.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev-offload-tc.c:atomic_flag_clear_explicit
Unexecuted instantiation: netlink-socket.c:atomic_flag_clear_explicit
Unexecuted instantiation: route-table.c:atomic_flag_clear_explicit
Unexecuted instantiation: tc.c:atomic_flag_clear_explicit
Unexecuted instantiation: async-append-aio.c:atomic_flag_clear_explicit
Unexecuted instantiation: dirs.c:atomic_flag_clear_explicit
Unexecuted instantiation: classifier.c:atomic_flag_clear_explicit
Unexecuted instantiation: ccmap.c:atomic_flag_clear_explicit
Unexecuted instantiation: cmap.c:atomic_flag_clear_explicit
Unexecuted instantiation: command-line.c:atomic_flag_clear_explicit
Unexecuted instantiation: connectivity.c:atomic_flag_clear_explicit
Unexecuted instantiation: coverage.c:atomic_flag_clear_explicit
Unexecuted instantiation: dp-packet-gso.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif.c:atomic_flag_clear_explicit
Unexecuted instantiation: fatal-signal.c:atomic_flag_clear_explicit
Unexecuted instantiation: guarded-list.c:atomic_flag_clear_explicit
Unexecuted instantiation: hmap.c:atomic_flag_clear_explicit
Unexecuted instantiation: jsonrpc.c:atomic_flag_clear_explicit
Unexecuted instantiation: meta-flow.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev-offload.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev-vport.c:atomic_flag_clear_explicit
Unexecuted instantiation: netlink.c:atomic_flag_clear_explicit
Unexecuted instantiation: nx-match.c:atomic_flag_clear_explicit
Unexecuted instantiation: odp-execute.c:atomic_flag_clear_explicit
Unexecuted instantiation: odp-execute-private.c:atomic_flag_clear_explicit
Unexecuted instantiation: odp-util.c:atomic_flag_clear_explicit
Unexecuted instantiation: ofp-actions.c:atomic_flag_clear_explicit
Unexecuted instantiation: ofp-monitor.c:atomic_flag_clear_explicit
Unexecuted instantiation: ofp-msgs.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovs-replay.c:atomic_flag_clear_explicit
Unexecuted instantiation: stream.c:atomic_flag_clear_explicit
Unexecuted instantiation: tnl-neigh-cache.c:atomic_flag_clear_explicit
Unexecuted instantiation: netdev-native-tnl.c:atomic_flag_clear_explicit
Unexecuted instantiation: daemon-unix.c:atomic_flag_clear_explicit
Unexecuted instantiation: stream-unix.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netlink.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netlink-rtnl.c:atomic_flag_clear_explicit
Unexecuted instantiation: netlink-conntrack.c:atomic_flag_clear_explicit
Unexecuted instantiation: netlink-notifier.c:atomic_flag_clear_explicit
Unexecuted instantiation: stream-ssl.c:atomic_flag_clear_explicit
Unexecuted instantiation: conntrack.c:atomic_flag_clear_explicit
Unexecuted instantiation: daemon.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-private-dfc.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-private-dpif.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-private-extract.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-perf.c:atomic_flag_clear_explicit
Unexecuted instantiation: fat-rwlock.c:atomic_flag_clear_explicit
Unexecuted instantiation: hindex.c:atomic_flag_clear_explicit
Unexecuted instantiation: id-fpool.c:atomic_flag_clear_explicit
Unexecuted instantiation: ipf.c:atomic_flag_clear_explicit
Unexecuted instantiation: learn.c:atomic_flag_clear_explicit
Unexecuted instantiation: lockfile.c:atomic_flag_clear_explicit
Unexecuted instantiation: mpsc-queue.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovs-numa.c:atomic_flag_clear_explicit
Unexecuted instantiation: process.c:atomic_flag_clear_explicit
Unexecuted instantiation: stream-replay.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpdk-stub.c:atomic_flag_clear_explicit
Unexecuted instantiation: vswitch-idl.c:atomic_flag_clear_explicit
Unexecuted instantiation: conntrack-icmp.c:atomic_flag_clear_explicit
Unexecuted instantiation: conntrack-tcp.c:atomic_flag_clear_explicit
Unexecuted instantiation: conntrack-tp.c:atomic_flag_clear_explicit
Unexecuted instantiation: conntrack-other.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-extract-study.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-lookup.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:atomic_flag_clear_explicit
Unexecuted instantiation: dpif-netdev-lookup-generic.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovsdb-data.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovsdb-idl.c:atomic_flag_clear_explicit
Unexecuted instantiation: ovsdb-types.c:atomic_flag_clear_explicit
47
48
static inline void
49
atomic_flag_clear(volatile atomic_flag *object)
50
0
{
51
0
    atomic_flag_clear_explicit(object, memory_order_seq_cst);
52
0
}
Unexecuted instantiation: miniflow_target.c:atomic_flag_clear
Unexecuted instantiation: dp-packet.c:atomic_flag_clear
Unexecuted instantiation: flow.c:atomic_flag_clear
Unexecuted instantiation: netdev.c:atomic_flag_clear
Unexecuted instantiation: ofp-util.c:atomic_flag_clear
Unexecuted instantiation: ovs-rcu.c:atomic_flag_clear
Unexecuted instantiation: ovs-router.c:atomic_flag_clear
Unexecuted instantiation: ovs-thread.c:atomic_flag_clear
Unexecuted instantiation: packets.c:atomic_flag_clear
Unexecuted instantiation: poll-loop.c:atomic_flag_clear
Unexecuted instantiation: pvector.c:atomic_flag_clear
Unexecuted instantiation: random.c:atomic_flag_clear
Unexecuted instantiation: seq.c:atomic_flag_clear
Unexecuted instantiation: socket-util.c:atomic_flag_clear
Unexecuted instantiation: timeval.c:atomic_flag_clear
Unexecuted instantiation: tnl-ports.c:atomic_flag_clear
Unexecuted instantiation: tun-metadata.c:atomic_flag_clear
Unexecuted instantiation: unixctl.c:atomic_flag_clear
Unexecuted instantiation: userspace-tso.c:atomic_flag_clear
Unexecuted instantiation: util.c:atomic_flag_clear
Unexecuted instantiation: uuid.c:atomic_flag_clear
Unexecuted instantiation: vlog.c:atomic_flag_clear
Unexecuted instantiation: netdev-linux.c:atomic_flag_clear
Unexecuted instantiation: netdev-offload-tc.c:atomic_flag_clear
Unexecuted instantiation: netlink-socket.c:atomic_flag_clear
Unexecuted instantiation: route-table.c:atomic_flag_clear
Unexecuted instantiation: tc.c:atomic_flag_clear
Unexecuted instantiation: async-append-aio.c:atomic_flag_clear
Unexecuted instantiation: dirs.c:atomic_flag_clear
Unexecuted instantiation: classifier.c:atomic_flag_clear
Unexecuted instantiation: ccmap.c:atomic_flag_clear
Unexecuted instantiation: cmap.c:atomic_flag_clear
Unexecuted instantiation: command-line.c:atomic_flag_clear
Unexecuted instantiation: connectivity.c:atomic_flag_clear
Unexecuted instantiation: coverage.c:atomic_flag_clear
Unexecuted instantiation: dp-packet-gso.c:atomic_flag_clear
Unexecuted instantiation: dpif.c:atomic_flag_clear
Unexecuted instantiation: fatal-signal.c:atomic_flag_clear
Unexecuted instantiation: guarded-list.c:atomic_flag_clear
Unexecuted instantiation: hmap.c:atomic_flag_clear
Unexecuted instantiation: jsonrpc.c:atomic_flag_clear
Unexecuted instantiation: meta-flow.c:atomic_flag_clear
Unexecuted instantiation: netdev-offload.c:atomic_flag_clear
Unexecuted instantiation: netdev-vport.c:atomic_flag_clear
Unexecuted instantiation: netlink.c:atomic_flag_clear
Unexecuted instantiation: nx-match.c:atomic_flag_clear
Unexecuted instantiation: odp-execute.c:atomic_flag_clear
Unexecuted instantiation: odp-execute-private.c:atomic_flag_clear
Unexecuted instantiation: odp-util.c:atomic_flag_clear
Unexecuted instantiation: ofp-actions.c:atomic_flag_clear
Unexecuted instantiation: ofp-monitor.c:atomic_flag_clear
Unexecuted instantiation: ofp-msgs.c:atomic_flag_clear
Unexecuted instantiation: ovs-replay.c:atomic_flag_clear
Unexecuted instantiation: stream.c:atomic_flag_clear
Unexecuted instantiation: tnl-neigh-cache.c:atomic_flag_clear
Unexecuted instantiation: netdev-native-tnl.c:atomic_flag_clear
Unexecuted instantiation: daemon-unix.c:atomic_flag_clear
Unexecuted instantiation: stream-unix.c:atomic_flag_clear
Unexecuted instantiation: dpif-netlink.c:atomic_flag_clear
Unexecuted instantiation: dpif-netlink-rtnl.c:atomic_flag_clear
Unexecuted instantiation: netlink-conntrack.c:atomic_flag_clear
Unexecuted instantiation: netlink-notifier.c:atomic_flag_clear
Unexecuted instantiation: stream-ssl.c:atomic_flag_clear
Unexecuted instantiation: conntrack.c:atomic_flag_clear
Unexecuted instantiation: daemon.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-private-dfc.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-private-dpif.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-private-extract.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-perf.c:atomic_flag_clear
Unexecuted instantiation: fat-rwlock.c:atomic_flag_clear
Unexecuted instantiation: hindex.c:atomic_flag_clear
Unexecuted instantiation: id-fpool.c:atomic_flag_clear
Unexecuted instantiation: ipf.c:atomic_flag_clear
Unexecuted instantiation: learn.c:atomic_flag_clear
Unexecuted instantiation: lockfile.c:atomic_flag_clear
Unexecuted instantiation: mpsc-queue.c:atomic_flag_clear
Unexecuted instantiation: ovs-numa.c:atomic_flag_clear
Unexecuted instantiation: process.c:atomic_flag_clear
Unexecuted instantiation: stream-replay.c:atomic_flag_clear
Unexecuted instantiation: dpdk-stub.c:atomic_flag_clear
Unexecuted instantiation: vswitch-idl.c:atomic_flag_clear
Unexecuted instantiation: conntrack-icmp.c:atomic_flag_clear
Unexecuted instantiation: conntrack-tcp.c:atomic_flag_clear
Unexecuted instantiation: conntrack-tp.c:atomic_flag_clear
Unexecuted instantiation: conntrack-other.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-extract-study.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-lookup.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:atomic_flag_clear
Unexecuted instantiation: dpif-netdev-lookup-generic.c:atomic_flag_clear
Unexecuted instantiation: ovsdb-data.c:atomic_flag_clear
Unexecuted instantiation: ovsdb-idl.c:atomic_flag_clear
Unexecuted instantiation: ovsdb-types.c:atomic_flag_clear