Home
last modified time | relevance | path

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

/linux/net/switchdev/
H A Dswitchdev.c558 bool (*check_cb)(const struct net_device *dev); member
571 bool (*check_cb)(const struct net_device *dev); in switchdev_lower_dev_walk() local
574 check_cb = switchdev_priv->check_cb; in switchdev_lower_dev_walk()
578 if (check_cb(lower_dev) && !foreign_dev_check_cb(lower_dev, dev)) { in switchdev_lower_dev_walk()
588 bool (*check_cb)(const struct net_device *dev), in switchdev_lower_dev_find_rcu()
593 .check_cb = check_cb, in switchdev_lower_dev_find_rcu()
609 bool (*check_cb)(const struct net_device *dev), in switchdev_lower_dev_find()
614 .check_cb in switchdev_lower_dev_find()
[all...]
/linux/net/batman-adv/
H A Dfragmentation.h19 bool (*check_cb)(struct batadv_frag_table_entry *));
H A Dfragmentation.c59 * @check_cb: optional function to tell if an entry should be purged
62 bool (*check_cb)(struct batadv_frag_table_entry *)) in batadv_frag_purge_orig()
71 if (!check_cb || check_cb(chain)) { in batadv_frag_purge_orig()
/linux/fs/dlm/
H A Dconfig.c158 int (*check_cb)(unsigned int x), in cluster_set()
170 if (check_cb) { in cluster_set()
171 rc = check_cb(x); in cluster_set()
181 #define CLUSTER_ATTR(name, check_cb) \ argument
185 return cluster_set(&dlm_config.ci_##name, check_cb, buf, len); \