Home
last modified time | relevance | path

Searched refs:intent (Results 1 – 25 of 69) sorted by relevance

123

/linux-6.12.1/drivers/rpmsg/
Dqcom_glink_native.c264 struct glink_core_rx_intent *intent; in qcom_glink_channel_release() local
274 list_for_each_entry_safe(intent, tmp, &channel->done_intents, node) { in qcom_glink_channel_release()
275 if (!intent->reuse) { in qcom_glink_channel_release()
276 kfree(intent->data); in qcom_glink_channel_release()
277 kfree(intent); in qcom_glink_channel_release()
559 struct glink_core_rx_intent *intent, *tmp; in qcom_glink_rx_done_work() local
572 list_for_each_entry_safe(intent, tmp, &channel->done_intents, node) { in qcom_glink_rx_done_work()
573 list_del(&intent->node); in qcom_glink_rx_done_work()
575 iid = intent->id; in qcom_glink_rx_done_work()
576 reuse = intent->reuse; in qcom_glink_rx_done_work()
[all …]
/linux-6.12.1/fs/xfs/libxfs/
Dxfs_defer.h54 void (*abort_intent)(struct xfs_log_item *intent);
56 struct xfs_log_item *intent, unsigned int count);
65 struct xfs_log_item *intent,
Dxfs_defer.c199 struct xfs_log_item *intent) in xfs_defer_barrier_abort_intent() argument
207 struct xfs_log_item *intent, in xfs_defer_barrier_create_done() argument
/linux-6.12.1/fs/xfs/
Dxfs_refcount_item.c308 struct xfs_log_item *intent, in xfs_refcount_update_create_done() argument
311 struct xfs_cui_log_item *cuip = CUI_ITEM(intent); in xfs_refcount_update_create_done()
391 struct xfs_log_item *intent) in xfs_refcount_update_abort_intent() argument
393 xfs_cui_release(CUI_ITEM(intent)); in xfs_refcount_update_abort_intent()
510 struct xfs_log_item *intent, in xfs_refcount_relog_intent() argument
517 count = CUI_ITEM(intent)->cui_format.cui_nextents; in xfs_refcount_relog_intent()
518 pmap = CUI_ITEM(intent)->cui_format.cui_extents; in xfs_refcount_relog_intent()
Dxfs_rmap_item.c331 struct xfs_log_item *intent, in xfs_rmap_update_create_done() argument
334 struct xfs_rui_log_item *ruip = RUI_ITEM(intent); in xfs_rmap_update_create_done()
408 struct xfs_log_item *intent) in xfs_rmap_update_abort_intent() argument
410 xfs_rui_release(RUI_ITEM(intent)); in xfs_rmap_update_abort_intent()
561 struct xfs_log_item *intent, in xfs_rmap_relog_intent() argument
568 count = RUI_ITEM(intent)->rui_format.rui_nextents; in xfs_rmap_relog_intent()
569 map = RUI_ITEM(intent)->rui_format.rui_extents; in xfs_rmap_relog_intent()
Dxfs_bmap_item.c306 struct xfs_log_item *intent, in xfs_bmap_update_create_done() argument
309 struct xfs_bui_log_item *buip = BUI_ITEM(intent); in xfs_bmap_update_create_done()
412 struct xfs_log_item *intent) in xfs_bmap_update_abort_intent() argument
414 xfs_bui_release(BUI_ITEM(intent)); in xfs_bmap_update_abort_intent()
576 struct xfs_log_item *intent, in xfs_bmap_relog_intent() argument
583 count = BUI_ITEM(intent)->bui_format.bui_nextents; in xfs_bmap_relog_intent()
584 map = BUI_ITEM(intent)->bui_format.bui_extents; in xfs_bmap_relog_intent()
Dxfs_exchmaps_item.c250 struct xfs_log_item *intent, in xfs_exchmaps_create_done() argument
253 struct xfs_xmi_log_item *xmi_lip = XMI_ITEM(intent); in xfs_exchmaps_create_done()
321 struct xfs_log_item *intent) in xfs_exchmaps_abort_intent() argument
323 xfs_xmi_release(XMI_ITEM(intent)); in xfs_exchmaps_abort_intent()
488 struct xfs_log_item *intent, in xfs_exchmaps_relog_intent() argument
494 old_xlf = &XMI_ITEM(intent)->xmi_format; in xfs_exchmaps_relog_intent()
Dxfs_extfree_item.c414 struct xfs_log_item *intent, in xfs_extent_free_create_done() argument
417 struct xfs_efi_log_item *efip = EFI_ITEM(intent); in xfs_extent_free_create_done()
518 struct xfs_log_item *intent) in xfs_extent_free_abort_intent() argument
520 xfs_efi_release(EFI_ITEM(intent)); in xfs_extent_free_abort_intent()
644 struct xfs_log_item *intent, in xfs_extent_free_relog_intent() argument
652 count = EFI_ITEM(intent)->efi_format.efi_nextents; in xfs_extent_free_relog_intent()
653 extp = EFI_ITEM(intent)->efi_format.efi_extents; in xfs_extent_free_relog_intent()
Dxfs_attr_item.c517 struct xfs_log_item *intent) in xfs_attr_abort_intent() argument
519 xfs_attri_release(ATTRI_ITEM(intent)); in xfs_attr_abort_intent()
811 struct xfs_log_item *intent, in xfs_attr_relog_intent() argument
819 old_attrip = ATTRI_ITEM(intent); in xfs_attr_relog_intent()
853 struct xfs_log_item *intent, in xfs_attr_create_done() argument
859 attrip = ATTRI_ITEM(intent); in xfs_attr_create_done()
/linux-6.12.1/fs/bcachefs/
Dbtree_iter.h22 static inline void __btree_path_get(struct btree_trans *trans, struct btree_path *path, bool intent) in __btree_path_get() argument
33 path->intent_ref += intent; in __btree_path_get()
37 static inline bool __btree_path_put(struct btree_trans *trans, struct btree_path *path, bool intent) in __btree_path_put() argument
41 EBUG_ON(!path->intent_ref && intent); in __btree_path_put()
44 path->intent_ref -= intent; in __btree_path_put()
209 btree_path_idx_t path, bool intent, in bch2_btree_path_make_mut() argument
214 path = __bch2_btree_path_make_mut(trans, path, intent, ip); in bch2_btree_path_make_mut()
226 bool intent, unsigned long ip) in bch2_btree_path_set_pos() argument
229 ? __bch2_btree_path_set_pos(trans, path, new_pos, intent, ip) in bch2_btree_path_set_pos()
Dbtree_iter.c1240 bool intent, unsigned long ip) in btree_path_clone() argument
1244 __btree_path_get(trans, trans->paths + new, intent); in btree_path_clone()
1253 btree_path_idx_t path, bool intent, unsigned long ip) in __bch2_btree_path_make_mut() argument
1256 __btree_path_put(trans, trans->paths + path, intent); in __bch2_btree_path_make_mut()
1257 path = btree_path_clone(trans, path, intent, ip); in __bch2_btree_path_make_mut()
1266 bool intent, unsigned long ip) in __bch2_btree_path_set_pos() argument
1275 path_idx = bch2_btree_path_make_mut(trans, path_idx, intent, ip); in __bch2_btree_path_set_pos()
1380 void bch2_path_put(struct btree_trans *trans, btree_path_idx_t path_idx, bool intent) in bch2_path_put() argument
1384 if (!__btree_path_put(trans, path, intent)) in bch2_path_put()
1415 bool intent) in bch2_path_put_nokeep() argument
[all …]
Dsix.h366 __SIX_LOCK(intent)
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-class-fpga-manager12 The intent is to provide enough detail that if something goes
44 error or incompatible bitstream image. The intent of this
/linux-6.12.1/Documentation/security/
Dlsm-development.rst6 a new LSM is accepted into the kernel when its intent (a description of
/linux-6.12.1/drivers/net/
DLICENSE.SRC12 intent in sharing this software is to promote the productive interchange
/linux-6.12.1/drivers/net/ethernet/myricom/
DKconfig43 is used, with the intent of lessening the impact of cache misses.
/linux-6.12.1/Documentation/admin-guide/cifs/
Dintroduction.rst24 The intent of this module is to provide the most advanced network
/linux-6.12.1/drivers/mtd/spi-nor/
DKconfig40 Don't use this if you intent to use the software write protection
/linux-6.12.1/Documentation/networking/device_drivers/atm/
Dfore200e.rst14 The intent is to enable the use of different models of FORE adapters at the
/linux-6.12.1/Documentation/networking/pse-pd/
Dintroduction.rst71 'PD' to PoDL PD. The key intent is to provide devices with a unified interface
/linux-6.12.1/Documentation/nvme/
Dfeature-and-quirk-policy.rst64 implementation bugs. The intent of quirks is to deal with widely available
/linux-6.12.1/Documentation/devicetree/bindings/reset/
Dreset.txt27 block node for dedicated reset signals. The intent of this binding is to give
/linux-6.12.1/Documentation/driver-api/md/
Draid5-ppl.rst23 the array. Because of this, using write-intent bitmap and PPL together is not
/linux-6.12.1/fs/
Dinternal.h179 int intent; member
Dopen.c1306 op->intent = flags & O_PATH ? 0 : LOOKUP_OPEN; in build_open_flags()
1309 op->intent |= LOOKUP_CREATE; in build_open_flags()
1311 op->intent |= LOOKUP_EXCL; in build_open_flags()

123