Home
last modified time | relevance | path

Searched refs:insert (Results 1 - 25 of 178) sorted by relevance

12345678

/kernel/linux/linux-5.10/drivers/md/bcache/
H A Dextents.c228 struct bkey *insert, in bch_btree_ptr_insert_fixup()
234 if (!KEY_OFFSET(insert)) in bch_btree_ptr_insert_fixup()
324 struct bkey *insert, in bch_extent_insert_fixup()
333 BUG_ON(!KEY_OFFSET(insert)); in bch_extent_insert_fixup()
334 BUG_ON(!KEY_SIZE(insert)); in bch_extent_insert_fixup()
342 if (bkey_cmp(&START_KEY(k), insert) >= 0) { in bch_extent_insert_fixup()
349 if (bkey_cmp(k, &START_KEY(insert)) <= 0) in bch_extent_insert_fixup()
378 if (KEY_START(k) > KEY_START(insert) + sectors_found) in bch_extent_insert_fixup()
393 sectors_found = KEY_OFFSET(k) - KEY_START(insert); in bch_extent_insert_fixup()
396 if (bkey_cmp(insert, in bch_extent_insert_fixup()
227 bch_btree_ptr_insert_fixup(struct btree_keys *bk, struct bkey *insert, struct btree_iter *iter, struct bkey *replace_key) bch_btree_ptr_insert_fixup() argument
323 bch_extent_insert_fixup(struct btree_keys *b, struct bkey *insert, struct btree_iter *iter, struct bkey *replace_key) bch_extent_insert_fixup() argument
[all...]
/kernel/linux/linux-6.6/drivers/md/bcache/
H A Dextents.c228 struct bkey *insert, in bch_btree_ptr_insert_fixup()
234 if (!KEY_OFFSET(insert)) in bch_btree_ptr_insert_fixup()
324 struct bkey *insert, in bch_extent_insert_fixup()
333 BUG_ON(!KEY_OFFSET(insert)); in bch_extent_insert_fixup()
334 BUG_ON(!KEY_SIZE(insert)); in bch_extent_insert_fixup()
342 if (bkey_cmp(&START_KEY(k), insert) >= 0) { in bch_extent_insert_fixup()
349 if (bkey_cmp(k, &START_KEY(insert)) <= 0) in bch_extent_insert_fixup()
378 if (KEY_START(k) > KEY_START(insert) + sectors_found) in bch_extent_insert_fixup()
393 sectors_found = KEY_OFFSET(k) - KEY_START(insert); in bch_extent_insert_fixup()
396 if (bkey_cmp(insert, in bch_extent_insert_fixup()
227 bch_btree_ptr_insert_fixup(struct btree_keys *bk, struct bkey *insert, struct btree_iter *iter, struct bkey *replace_key) bch_btree_ptr_insert_fixup() argument
323 bch_extent_insert_fixup(struct btree_keys *b, struct bkey *insert, struct btree_iter *iter, struct bkey *replace_key) bch_extent_insert_fixup() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireguard/selftest/
H A Dallowedips.c460 #define insert(version, mem, ipa, ipb, ipc, ipd, cidr) \ macro
513 insert(4, a, 192, 168, 4, 0, 24); in wg_allowedips_selftest()
514 insert(4, b, 192, 168, 4, 4, 32); in wg_allowedips_selftest()
515 insert(4, c, 192, 168, 0, 0, 16); in wg_allowedips_selftest()
516 insert(4, d, 192, 95, 5, 64, 27); in wg_allowedips_selftest()
518 insert(4, c, 192, 95, 5, 65, 27); in wg_allowedips_selftest()
519 insert(6, d, 0x26075300, 0x60006b00, 0, 0xc05f0543, 128); in wg_allowedips_selftest()
520 insert(6, c, 0x26075300, 0x60006b00, 0, 0, 64); in wg_allowedips_selftest()
521 insert(4, e, 0, 0, 0, 0, 0); in wg_allowedips_selftest()
522 insert( in wg_allowedips_selftest()
677 #undef insert global() macro
[all...]
/kernel/linux/linux-6.6/drivers/net/wireguard/selftest/
H A Dallowedips.c460 #define insert(version, mem, ipa, ipb, ipc, ipd, cidr) \ macro
513 insert(4, a, 192, 168, 4, 0, 24); in wg_allowedips_selftest()
514 insert(4, b, 192, 168, 4, 4, 32); in wg_allowedips_selftest()
515 insert(4, c, 192, 168, 0, 0, 16); in wg_allowedips_selftest()
516 insert(4, d, 192, 95, 5, 64, 27); in wg_allowedips_selftest()
518 insert(4, c, 192, 95, 5, 65, 27); in wg_allowedips_selftest()
519 insert(6, d, 0x26075300, 0x60006b00, 0, 0xc05f0543, 128); in wg_allowedips_selftest()
520 insert(6, c, 0x26075300, 0x60006b00, 0, 0, 64); in wg_allowedips_selftest()
521 insert(4, e, 0, 0, 0, 0, 0); in wg_allowedips_selftest()
522 insert( in wg_allowedips_selftest()
677 #undef insert global() macro
[all...]
/kernel/linux/linux-5.10/virt/kvm/
H A Dcoalesced_mmio.c70 __u32 insert; in coalesced_mmio_write() local
77 insert = READ_ONCE(ring->last); in coalesced_mmio_write()
78 if (!coalesced_mmio_has_room(dev, insert) || in coalesced_mmio_write()
79 insert >= KVM_COALESCED_MMIO_MAX) { in coalesced_mmio_write()
86 ring->coalesced_mmio[insert].phys_addr = addr; in coalesced_mmio_write()
87 ring->coalesced_mmio[insert].len = len; in coalesced_mmio_write()
88 memcpy(ring->coalesced_mmio[insert].data, val, len); in coalesced_mmio_write()
89 ring->coalesced_mmio[insert].pio = dev->zone.pio; in coalesced_mmio_write()
91 ring->last = (insert + 1) % KVM_COALESCED_MMIO_MAX; in coalesced_mmio_write()
/kernel/linux/linux-6.6/virt/kvm/
H A Dcoalesced_mmio.c70 __u32 insert; in coalesced_mmio_write() local
77 insert = READ_ONCE(ring->last); in coalesced_mmio_write()
78 if (!coalesced_mmio_has_room(dev, insert) || in coalesced_mmio_write()
79 insert >= KVM_COALESCED_MMIO_MAX) { in coalesced_mmio_write()
86 ring->coalesced_mmio[insert].phys_addr = addr; in coalesced_mmio_write()
87 ring->coalesced_mmio[insert].len = len; in coalesced_mmio_write()
88 memcpy(ring->coalesced_mmio[insert].data, val, len); in coalesced_mmio_write()
89 ring->coalesced_mmio[insert].pio = dev->zone.pio; in coalesced_mmio_write()
91 ring->last = (insert + 1) % KVM_COALESCED_MMIO_MAX; in coalesced_mmio_write()
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py83 cmdlist.insert(0, '--track-origins=yes')
84 cmdlist.insert(0, '--show-leak-kinds=definite,indirect')
85 cmdlist.insert(0, '--leak-check=full')
86 cmdlist.insert(0, '--log-file=vgnd-{}.log'.format(self.args.testid))
87 cmdlist.insert(0, '-v') # ask for summary of non-leak errors
88 cmdlist.insert(0, ENVIR['VALGRIND_BIN'])
H A DnsPlugin.py64 cmdlist.insert(0, self.args.NAMES['NS'])
65 cmdlist.insert(0, 'exec')
66 cmdlist.insert(0, 'netns')
67 cmdlist.insert(0, self.args.NAMES['IP'])
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py83 cmdlist.insert(0, '--track-origins=yes')
84 cmdlist.insert(0, '--show-leak-kinds=definite,indirect')
85 cmdlist.insert(0, '--leak-check=full')
86 cmdlist.insert(0, '--log-file=vgnd-{}.log'.format(self.args.testid))
87 cmdlist.insert(0, '-v') # ask for summary of non-leak errors
88 cmdlist.insert(0, ENVIR['VALGRIND_BIN'])
H A DnsPlugin.py64 cmdlist.insert(0, self.args.NAMES['NS'])
65 cmdlist.insert(0, 'exec')
66 cmdlist.insert(0, 'netns')
67 cmdlist.insert(0, self.args.NAMES['IP'])
/kernel/linux/linux-5.10/tools/testing/selftests/timers/
H A Dleap-a-day.c7 * This test signals the kernel to insert a leap second
184 int insert = 1; in main() local
261 /* Set the leap second insert flag */ in main()
263 if (insert) in main()
320 if (insert) in main()
360 insert = !insert; in main()
/kernel/linux/linux-6.6/tools/testing/selftests/timers/
H A Dleap-a-day.c7 * This test signals the kernel to insert a leap second
184 int insert = 1; in main() local
261 /* Set the leap second insert flag */ in main()
263 if (insert) in main()
320 if (insert) in main()
360 insert = !insert; in main()
/kernel/linux/linux-6.6/fs/notify/
H A Dnotification.c74 * The group can use the @insert hook to insert the event into hash table.
85 void (*insert)(struct fsnotify_group *, in fsnotify_insert_event()
123 if (insert) in fsnotify_insert_event()
124 insert(group, event); in fsnotify_insert_event()
/kernel/linux/linux-5.10/include/linux/
H A Ddmar.h142 extern int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
158 static inline int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_iommu_hotplug() argument
165 extern int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
167 static inline int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_ir_hotplug() argument
H A Dbtree-type.h44 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in insert() function
87 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in insert() function
/kernel/linux/linux-6.6/include/linux/
H A Ddmar.h146 extern int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
163 static inline int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_iommu_hotplug() argument
170 extern int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
172 static inline int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_ir_hotplug() argument
H A Dbtree-type.h44 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in insert() function
87 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in insert() function
/kernel/linux/linux-6.6/rust/macros/
H A Dvtable.rs48 consts.insert(const_name);
77 consts.insert(gen_const_name);
/kernel/linux/linux-5.10/Documentation/sphinx/
H A DrstFlatTable.py33 * fill-cells: instead of autospann missing cells, insert missing cells
140 tableNode.insert(0, title)
264 self.rows[y].insert(x+c+1, None)
272 self.rows[y+r+1].insert(x+c, None)
355 cellElements.insert(0, target)
/kernel/linux/linux-5.10/drivers/net/can/dev/
H A Drx-offload.c79 struct sk_buff *pos, *insert = NULL; in __skb_queue_add_sort() local
96 insert = pos; in __skb_queue_add_sort()
99 if (!insert) in __skb_queue_add_sort()
102 __skb_queue_after(head, insert, new); in __skb_queue_add_sort()
/kernel/linux/linux-6.6/Documentation/sphinx/
H A DrstFlatTable.py33 * fill-cells: instead of autospann missing cells, insert missing cells
130 tableNode.insert(0, title)
254 self.rows[y].insert(x+c+1, None)
262 self.rows[y+r+1].insert(x+c, None)
345 cellElements.insert(0, target)
/kernel/linux/linux-5.10/net/rds/
H A Dcong.c105 struct rds_cong_map *insert) in rds_cong_tree_walk()
126 if (insert) { in rds_cong_tree_walk()
127 rb_link_node(&insert->m_rb_node, parent, p); in rds_cong_tree_walk()
128 rb_insert_color(&insert->m_rb_node, &rds_cong_tree); in rds_cong_tree_walk()
104 rds_cong_tree_walk(const struct in6_addr *addr, struct rds_cong_map *insert) rds_cong_tree_walk() argument
/kernel/linux/linux-6.6/drivers/net/can/dev/
H A Drx-offload.c80 struct sk_buff *pos, *insert = NULL; in __skb_queue_add_sort() local
97 insert = pos; in __skb_queue_add_sort()
100 if (!insert) in __skb_queue_add_sort()
103 __skb_queue_after(head, insert, new); in __skb_queue_add_sort()
/kernel/linux/linux-6.6/net/rds/
H A Dcong.c105 struct rds_cong_map *insert) in rds_cong_tree_walk()
126 if (insert) { in rds_cong_tree_walk()
127 rb_link_node(&insert->m_rb_node, parent, p); in rds_cong_tree_walk()
128 rb_insert_color(&insert->m_rb_node, &rds_cong_tree); in rds_cong_tree_walk()
104 rds_cong_tree_walk(const struct in6_addr *addr, struct rds_cong_map *insert) rds_cong_tree_walk() argument
/kernel/linux/linux-6.6/Documentation/
H A Dconf.py44 sys.path.insert(0, os.path.abspath('sphinx'))
358 html_sidebars['**'].insert(0, 'about.html')

Completed in 21 milliseconds

12345678