Home
last modified time | relevance | path

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

/linux/net/core/
H A Ddev_addr_lists.c307 * @unsync: function to call if address should be removed
311 * notifications. The unsync function may be NULL in which case
318 int (*unsync)(struct net_device *, in __hw_addr_sync_dev()
329 /* if unsync is defined and fails defer unsyncing address */ in __hw_addr_sync_dev()
330 if (unsync && unsync(dev, ha->addr)) in __hw_addr_sync_dev()
360 * @unsync: function to call if address or some reference on it should removed
364 * add/remove notifications. The unsync function may be NULL in which case
374 int (*unsync)(struct net_device *, in __hw_addr_ref_sync_dev()
388 if (unsync in __hw_addr_ref_sync_dev()
[all...]
/linux/arch/x86/kvm/mmu/
H A Dmmutrace.h16 __field(bool, unsync)
23 __entry->unsync = sp->unsync;
46 __entry->unsync ? "unsync" : "sync", 0); \
H A Dmmu_internal.h63 bool unsync; member
H A Dmmu.c1307 * - for spte protection, the spte can be writable only after unsync-ing
1892 if (sp->unsync) in mmu_pages_add()
1938 } else if (child->unsync) { in __mmu_unsync_walk()
1964 WARN_ON_ONCE(!sp->unsync); in kvm_unlink_unsync_page()
1966 sp->unsync = 0; in kvm_unlink_unsync_page()
2038 * Direct pages can never be unsync, and KVM should never attempt to in kvm_sync_page_check()
2249 * unsync, thus @vcpu can be NULL if @role.direct is true.
2271 * unsync pages for the same gfn. While it's possible in kvm_mmu_find_shadow_page()
2273 * likelihood the guest has stopped using the unsync in kvm_mmu_find_shadow_page()
2278 if (role.level > PG_LEVEL_4K && sp->unsync) in kvm_mmu_find_shadow_page()
[all...]
/linux/include/linux/
H A Dnetdevice.h4868 int (*unsync)(struct net_device *,
4874 int (*unsync)(struct net_device *,
4878 int (*unsync)(struct net_device *,
4882 int (*unsync)(struct net_device *,
4928 int (*unsync)(struct net_device *, in __dev_uc_sync()
4931 return __hw_addr_sync_dev(&dev->uc, dev, sync, unsync); in __dev_uc_sync()
4942 int (*unsync)(struct net_device *, in __dev_uc_unsync()
4945 __hw_addr_unsync_dev(&dev->uc, dev, unsync); in __dev_uc_unsync()
4972 int (*unsync)(struct net_device *, in __dev_mc_sync()
4975 return __hw_addr_sync_dev(&dev->mc, dev, sync, unsync); in __dev_mc_sync()
[all …]
/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_main.c8861 int (*unsync)(struct hclge_vport *vport, const unsigned char *addr); in hclge_unsync_vport_mac_list() local
8866 unsync = hclge_rm_uc_addr_common; in hclge_unsync_vport_mac_list()
8868 unsync = hclge_rm_mc_addr_common; in hclge_unsync_vport_mac_list()
8871 ret = unsync(vport, mac_node->mac_addr); in hclge_unsync_vport_mac_list()
9067 int (*unsync)(struct hclge_vport *vport, in hclge_unsync_del_list()
9076 ret = unsync(vport, mac_cfg->mac_addr); in hclge_unsync_del_list()
9098 int (*unsync)(struct hclge_vport *vport, const unsigned char *addr); in hclge_rm_vport_all_mac_table() local
9104 unsync = hclge_rm_uc_addr_common; in hclge_rm_vport_all_mac_table()
9107 unsync = hclge_rm_mc_addr_common; in hclge_rm_vport_all_mac_table()
9121 hclge_unsync_del_list(vport, unsync, is_del_lis in hclge_rm_vport_all_mac_table()
[all...]