Home
last modified time | relevance | path

Searched refs:tpp (Results 1 – 25 of 28) sorted by relevance

12

/linux-6.1.9/fs/xfs/libxfs/
Dxfs_defer.c348 struct xfs_trans **tpp) in xfs_defer_trans_roll() argument
353 error = xfs_defer_save_resources(&dres, *tpp); in xfs_defer_trans_roll()
357 trace_xfs_defer_trans_roll(*tpp, _RET_IP_); in xfs_defer_trans_roll()
366 error = xfs_trans_roll(tpp); in xfs_defer_trans_roll()
368 xfs_defer_restore_resources(*tpp, &dres); in xfs_defer_trans_roll()
371 trace_xfs_defer_trans_roll_error(*tpp, error); in xfs_defer_trans_roll()
414 struct xfs_trans **tpp, in xfs_defer_relog() argument
417 struct xlog *log = (*tpp)->t_mountp->m_log; in xfs_defer_relog()
422 ASSERT((*tpp)->t_flags & XFS_TRANS_PERM_LOG_RES); in xfs_defer_relog()
449 trace_xfs_defer_relog_intent((*tpp)->t_mountp, dfp); in xfs_defer_relog()
[all …]
Dxfs_trans_inode.c215 struct xfs_trans **tpp, in xfs_trans_roll_inode() argument
220 xfs_trans_log_inode(*tpp, ip, XFS_ILOG_CORE); in xfs_trans_roll_inode()
221 error = xfs_trans_roll(tpp); in xfs_trans_roll_inode()
223 xfs_trans_ijoin(*tpp, ip, 0); in xfs_trans_roll_inode()
Dxfs_ag.c820 struct xfs_trans **tpp, in xfs_ag_shrink_space() argument
825 .tp = *tpp, in xfs_ag_shrink_space()
841 error = xfs_ialloc_read_agi(pag, *tpp, &agibp); in xfs_ag_shrink_space()
847 error = xfs_alloc_read_agf(pag, *tpp, 0, &agfbp); in xfs_ag_shrink_space()
865 error = xfs_ialloc_check_shrink(*tpp, pag->pag_agno, agibp, in xfs_ag_shrink_space()
888 xfs_trans_bhold(*tpp, agfbp); in xfs_ag_shrink_space()
889 err2 = xfs_trans_roll(tpp); in xfs_ag_shrink_space()
892 xfs_trans_bjoin(*tpp, agfbp); in xfs_ag_shrink_space()
903 err2 = xfs_ag_resv_init(pag, *tpp); in xfs_ag_shrink_space()
910 __xfs_free_extent_later(*tpp, args.fsbno, delta, NULL, true); in xfs_ag_shrink_space()
[all …]
Dxfs_bmap_btree.c43 __be64 *tpp; in xfs_bmdr_to_bmbt() local
55 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen); in xfs_bmdr_to_bmbt()
58 memcpy(tpp, fpp, sizeof(*fpp) * dmxr); in xfs_bmdr_to_bmbt()
139 __be64 *tpp; in xfs_bmbt_to_bmdr() local
158 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr); in xfs_bmbt_to_bmdr()
161 memcpy(tpp, fpp, sizeof(*fpp) * dmxr); in xfs_bmbt_to_bmdr()
Dxfs_ialloc.c1544 struct xfs_trans **tpp, in xfs_dialloc_roll() argument
1547 struct xfs_trans *tp = *tpp; in xfs_dialloc_roll()
1576 *tpp = tp; in xfs_dialloc_roll()
1668 struct xfs_trans **tpp, in xfs_dialloc_try_ag() argument
1682 error = xfs_ialloc_read_agi(pag, *tpp, &agbp); in xfs_dialloc_try_ag()
1692 error = xfs_ialloc_ag_alloc(*tpp, agbp, pag); in xfs_dialloc_try_ag()
1702 error = xfs_dialloc_roll(tpp, agbp); in xfs_dialloc_try_ag()
1708 error = xfs_dialloc_ag(*tpp, agbp, pag, parent, &ino); in xfs_dialloc_try_ag()
1714 xfs_trans_brelse(*tpp, agbp); in xfs_dialloc_try_ag()
1728 struct xfs_trans **tpp, in xfs_dialloc() argument
[all …]
Dxfs_ialloc.h39 int xfs_dialloc(struct xfs_trans **tpp, xfs_ino_t parent, umode_t mode,
Dxfs_ag.h236 int xfs_ag_shrink_space(struct xfs_perag *pag, struct xfs_trans **tpp,
/linux-6.1.9/fs/xfs/
Dxfs_trans.h170 struct xfs_trans **tpp);
172 struct xfs_trans **tpp);
262 struct xfs_trans **tpp);
266 struct xfs_trans **tpp);
269 struct xfs_trans **tpp);
272 struct xfs_trans **tpp, int *nospace_error);
Dxfs_trans.c249 struct xfs_trans **tpp) in xfs_trans_alloc() argument
304 *tpp = tp; in xfs_trans_alloc()
327 struct xfs_trans **tpp) in xfs_trans_alloc_empty() argument
331 return xfs_trans_alloc(mp, &resv, 0, 0, XFS_TRANS_NO_WRITECOUNT, tpp); in xfs_trans_alloc_empty()
1130 struct xfs_trans **tpp) in xfs_trans_roll() argument
1132 struct xfs_trans *trans = *tpp; in xfs_trans_roll()
1144 *tpp = xfs_trans_dup(trans); in xfs_trans_roll()
1166 return xfs_trans_reserve(*tpp, &tres, 0, 0); in xfs_trans_roll()
1183 struct xfs_trans **tpp) in xfs_trans_alloc_inode() argument
1218 *tpp = tp; in xfs_trans_alloc_inode()
[all …]
Dxfs_reflink.h31 struct xfs_trans **tpp, xfs_fileoff_t offset_fsb,
44 struct xfs_trans **tpp);
Dxfs_reflink.c581 struct xfs_trans **tpp, in xfs_reflink_cancel_cow_blocks() argument
615 ASSERT((*tpp)->t_firstblock == NULLFSBLOCK); in xfs_reflink_cancel_cow_blocks()
618 xfs_refcount_free_cow_extent(*tpp, del.br_startblock, in xfs_reflink_cancel_cow_blocks()
621 xfs_free_extent_later(*tpp, del.br_startblock, in xfs_reflink_cancel_cow_blocks()
625 error = xfs_defer_finish(tpp); in xfs_reflink_cancel_cow_blocks()
1610 struct xfs_trans **tpp) in xfs_reflink_clear_inode_flag() argument
1617 error = xfs_reflink_inode_has_shared_extents(*tpp, ip, &needs_flag); in xfs_reflink_clear_inode_flag()
1625 error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, XFS_MAX_FILEOFF, in xfs_reflink_clear_inode_flag()
1634 xfs_trans_log_inode(*tpp, ip, XFS_ILOG_CORE); in xfs_reflink_clear_inode_flag()
Dxfs_bmap_util.c1365 struct xfs_trans **tpp, in xfs_swap_extent_rmap() argument
1369 struct xfs_trans *tp = *tpp; in xfs_swap_extent_rmap()
1466 error = xfs_defer_finish(tpp); in xfs_swap_extent_rmap()
1467 tp = *tpp; in xfs_swap_extent_rmap()
1599 struct xfs_trans **tpp, in xfs_swap_change_owner() argument
1604 struct xfs_trans *tp = *tpp; in xfs_swap_change_owner()
1613 error = xfs_trans_roll(tpp); in xfs_swap_change_owner()
1616 tp = *tpp; in xfs_swap_change_owner()
Dxfs_inode.h525 struct xfs_trans **tpp, in xfs_itruncate_extents() argument
530 return xfs_itruncate_extents_flags(tpp, ip, whichfork, new_size, 0); in xfs_itruncate_extents()
Dxfs_inode.c1327 struct xfs_trans **tpp, in xfs_itruncate_extents_flags() argument
1334 struct xfs_trans *tp = *tpp; in xfs_itruncate_extents_flags()
1401 *tpp = tp; in xfs_itruncate_extents_flags()
/linux-6.1.9/Documentation/translations/zh_CN/process/
Dhowto.rst111 https://www.ozlabs.org/~akpm/stuff/tpp.txt
474 https://www.ozlabs.org/~akpm/stuff/tpp.txt
Dsubmitting-patches.rst627 Andrew Morton,“完美的补丁”(tpp
628 <https://www.ozlabs.org/~akpm/stuff/tpp.txt>
/linux-6.1.9/Documentation/translations/zh_TW/process/
Dhowto.rst114 https://www.ozlabs.org/~akpm/stuff/tpp.txt
477 https://www.ozlabs.org/~akpm/stuff/tpp.txt
Dsubmitting-patches.rst628 Andrew Morton, "The perfect patch" (tpp).
629 <https://www.ozlabs.org/~akpm/stuff/tpp.txt>
/linux-6.1.9/Documentation/translations/ko_KR/
Dhowto.rst143 https://www.ozlabs.org/~akpm/stuff/tpp.txt
594 https://www.ozlabs.org/~akpm/stuff/tpp.txt
/linux-6.1.9/Documentation/translations/ja_JP/
Dhowto.rst148 http://www.ozlabs.org/~akpm/stuff/tpp.txt
624 http://www.ozlabs.org/~akpm/stuff/tpp.txt
DSubmittingPatches693 Andrew Morton, "The perfect patch" (tpp).
694 <http://www.ozlabs.org/~akpm/stuff/tpp.txt>
/linux-6.1.9/drivers/gpu/drm/radeon/
Dnislands_smc.h208 uint32_t tpp[SMC_NISLANDS_MC_TPP_CAC_NUM_OF_ENTRIES]; member
/linux-6.1.9/net/sctp/
Dinput.c478 struct sctp_transport **tpp) in sctp_err_lookup() argument
489 *app = NULL; *tpp = NULL; in sctp_err_lookup()
545 *tpp = transport; in sctp_err_lookup()
/linux-6.1.9/net/xfrm/
Dxfrm_policy.c2425 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm; in xfrm_tmpl_resolve() local
2437 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family); in xfrm_tmpl_resolve()
2447 xfrm_state_sort(xfrm, tpp, cnx, family); in xfrm_tmpl_resolve()
2453 xfrm_state_put(tpp[cnx]); in xfrm_tmpl_resolve()
3614 struct xfrm_tmpl **tpp = tp; in __xfrm_policy_check() local
3633 tpp[ti++] = &pols[pi]->xfrm_vec[i]; in __xfrm_policy_check()
3644 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family); in __xfrm_policy_check()
3645 tpp = stp; in __xfrm_policy_check()
3655 k = xfrm_policy_ok(tpp[i], sp, k, family); in __xfrm_policy_check()
/linux-6.1.9/Documentation/process/
Dhowto.rst123 https://www.ozlabs.org/~akpm/stuff/tpp.txt
599 https://www.ozlabs.org/~akpm/stuff/tpp.txt

12