Home
last modified time | relevance | path

Searched refs:to_remove (Results 1 – 11 of 11) sorted by relevance

/linux/drivers/net/ethernet/netronome/nfp/flower/
H A Dlag_conf.c67 bool to_remove; member
132 group->to_remove = false; in nfp_fl_lag_group_create()
315 if (entry->to_remove) { in nfp_fl_lag_do_work()
320 entry->to_remove = false; in nfp_fl_lag_do_work()
505 group->to_remove = true; in nfp_fl_lag_schedule_group_remove()
531 group->to_remove = true; in nfp_fl_lag_schedule_group_delete()
613 group->to_remove = false; in nfp_fl_lag_changeupper_event()
/linux/samples/rust/
H A Drust_debugfs_scoped.rs46 let to_remove = CStr::from_bytes_with_nul(&buf[..nul_idx + 1]).map_err(|_| EINVAL)?; in create_file_write()
50 .retain(|device| device.name.to_bytes() != to_remove.to_bytes()); in create_file_write()
38 let to_remove = CStr::from_bytes_with_nul(&buf[..nul_idx + 1]).map_err(|_| EINVAL)?; remove_file_write() localVariable
/linux/fs/fuse/
H A Ddax.c252 struct list_head *to_remove) in dmap_removemapping_list() argument
265 list_for_each_entry(dmap, to_remove, list) { in dmap_removemapping_list()
316 LIST_HEAD(to_remove); in inode_reclaim_dmap_range()
331 list_add(&dmap->list, &to_remove); in inode_reclaim_dmap_range()
335 if (list_empty(&to_remove)) in inode_reclaim_dmap_range()
340 err = dmap_removemapping_list(inode, num, &to_remove); in inode_reclaim_dmap_range()
346 list_for_each_entry_safe(dmap, n, &to_remove, list) { in inode_reclaim_dmap_range()
/linux/security/apparmor/
H A Dpolicy.c201 struct aa_profile *curr, *to_remove; in __remove_profile() local
217 to_remove = curr; in __remove_profile()
218 if (!list_is_last(&to_remove->base.list, in __remove_profile()
220 curr = list_next_entry(to_remove, base.list); in __remove_profile()
225 aa_label_remove(&to_remove->label); in __remove_profile()
226 __aafs_profile_rmdir(to_remove); in __remove_profile()
227 __list_remove_profile(to_remove); in __remove_profile()
/linux/drivers/bluetooth/
H A Dhci_h5.c294 int i, to_remove; in h5_pkt_cull()
299 to_remove = skb_queue_len(&h5->unack); in h5_pkt_cull()
300 if (to_remove == 0) in h5_pkt_cull()
305 while (to_remove > 0) { in h5_pkt_cull()
309 to_remove--; in h5_pkt_cull()
318 if (i++ >= to_remove) in h5_pkt_cull()
293 int i, to_remove; h5_pkt_cull() local
/linux/kernel/trace/
H A Dring_buffer.c2987 struct list_head *tail_page, *to_remove, *next_page; in rb_insert_pages()
3015 to_remove = tail_page; in rb_update_pages()
3018 first_page = list_entry(rb_list_head(to_remove->next), in rb_update_pages()
3022 to_remove = rb_list_head(to_remove)->next; in update_pages_handler()
3023 head_bit |= (unsigned long)to_remove & RB_PAGE_HEAD; in update_pages_handler()
3028 next_page = rb_list_head(to_remove)->next;
3056 last_page = list_entry(rb_list_head(to_remove), struct buffer_page, in ring_buffer_resize()
2817 struct list_head *tail_page, *to_remove, *next_page; rb_remove_pages() local
/linux/fs/ceph/
H A Dcaps.c3824 LIST_HEAD(to_remove); in handle_cap_flush_ack()
3854 list_add_tail(&cf->i_list, &to_remove); in handle_cap_flush_ack()
3872 if (list_empty(&to_remove) && !cleaned) in handle_cap_flush_ack()
3879 list_for_each_entry(cf, &to_remove, i_list) in handle_cap_flush_ack()
3918 while (!list_empty(&to_remove)) { in handle_cap_flush_ack()
3919 cf = list_first_entry(&to_remove, in handle_cap_flush_ack()
/linux/drivers/md/
H A Dmd.h610 const struct attribute_group *to_remove;
608 const struct attribute_group *to_remove; global() member
H A Dmd.c929 if (mddev->to_remove) { in mddev_unlock()
935 * and anything else which might set ->to_remove or my in mddev_unlock() local
942 const struct attribute_group *to_remove = mddev->to_remove; in mddev_unlock()
943 mddev->to_remove = NULL; in mddev_unlock()
948 if (to_remove != &md_redundancy_group) in mddev_unlock()
949 sysfs_remove_group(&mddev->kobj, to_remove); in mddev_unlock()
4191 if (mddev->to_remove == NULL) in level_store()
4192 mddev->to_remove = &md_redundancy_group; in level_store()
7170 mddev->to_remove in do_md_stop()
[all...]
H A Draid5.c8124 if (mddev->to_remove == &raid5_attrs_group) in raid5_free()
8125 mddev->to_remove = NULL; in raid5_free()
8161 mddev->to_remove = &raid5_attrs_group; in print_raid5_conf()
/linux/drivers/net/wireless/ath/ath12k/
H A Dmac.c4269 unsigned long to_remove = old_links & ~new_links; in ath12k_mac_op_change_vif_links()
4294 for_each_set_bit(link_id, &to_remove, IEEE80211_MLD_MAX_NUM_LINKS) { in ath12k_mac_op_change_vif_links()
4265 unsigned long to_remove = old_links & ~new_links; ath12k_mac_op_change_vif_links() local