Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 25 of 73) sorted by relevance

123

/linux-4.19.296/fs/cifs/
Dtrace.h29 __u32 tid,
34 TP_ARGS(xid, fid, tid, sesid, offset, len, rc),
38 __field(__u32, tid)
47 __entry->tid = tid;
54 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
62 __u32 tid, \
67 TP_ARGS(xid, fid, tid, sesid, offset, len, rc))
77 __u32 tid,
81 TP_ARGS(xid, fid, tid, sesid, offset, len),
85 __field(__u32, tid)
[all …]
/linux-4.19.296/fs/jfs/
Dnamei.c79 tid_t tid; /* transaction id */ in jfs_create() local
111 tid = txBegin(dip->i_sb, 0); in jfs_create()
116 rc = jfs_init_acl(tid, ip, dip); in jfs_create()
120 rc = jfs_init_security(tid, ip, dip, &dentry->d_name); in jfs_create()
122 txAbort(tid, 0); in jfs_create()
128 txAbort(tid, 0); in jfs_create()
132 tblk = tid_to_tblock(tid); in jfs_create()
143 xtInitRoot(tid, ip); in jfs_create()
150 if ((rc = dtInsert(tid, dip, &dname, &ino, &btstack))) { in jfs_create()
153 txAbort(tid, 1); /* Marks Filesystem dirty */ in jfs_create()
[all …]
Djfs_xtree.h106 extern void xtInitRoot(tid_t tid, struct inode *ip);
107 extern int xtInsert(tid_t tid, struct inode *ip,
109 extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen,
112 extern int xtTailgate(tid_t tid, struct inode *ip,
115 extern int xtUpdate(tid_t tid, struct inode *ip, struct xad *nxad);
116 extern int xtDelete(tid_t tid, struct inode *ip, s64 xoff, int xlen,
118 extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type);
119 extern s64 xtTruncate_pmap(tid_t tid, struct inode *ip, s64 committed_size);
120 extern int xtRelocate(tid_t tid, struct inode *ip,
122 extern int xtAppend(tid_t tid,
Dacl.c69 static int __jfs_set_acl(tid_t tid, struct inode *inode, int type, in __jfs_set_acl() argument
97 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0); in __jfs_set_acl()
110 tid_t tid; in jfs_set_acl() local
114 tid = txBegin(inode->i_sb, 0); in jfs_set_acl()
122 rc = __jfs_set_acl(tid, inode, type, acl); in jfs_set_acl()
129 rc = txCommit(tid, 1, &inode, 0); in jfs_set_acl()
132 txEnd(tid); in jfs_set_acl()
137 int jfs_init_acl(tid_t tid, struct inode *inode, struct inode *dir) in jfs_init_acl() argument
147 rc = __jfs_set_acl(tid, inode, ACL_TYPE_DEFAULT, default_acl); in jfs_init_acl()
153 rc = __jfs_set_acl(tid, inode, ACL_TYPE_ACCESS, acl); in jfs_init_acl()
Dinode.c88 tid_t tid; in jfs_commit_inode() local
113 tid = txBegin(inode->i_sb, COMMIT_INODE); in jfs_commit_inode()
120 rc = txCommit(tid, 1, &inode, wait ? COMMIT_SYNC : 0); in jfs_commit_inode()
122 txEnd(tid); in jfs_commit_inode()
380 tid_t tid; in jfs_truncate_nolock() local
390 tid = txBegin(ip->i_sb, 0); in jfs_truncate_nolock()
400 newsize = xtTruncate(tid, ip, length, in jfs_truncate_nolock()
403 txEnd(tid); in jfs_truncate_nolock()
411 txCommit(tid, 1, &ip, 0); in jfs_truncate_nolock()
412 txEnd(tid); in jfs_truncate_nolock()
Djfs_xtree.c120 static int xtSplitUp(tid_t tid,
124 static int xtSplitPage(tid_t tid, struct inode *ip, struct xtsplit * split,
127 static int xtSplitRoot(tid_t tid, struct inode *ip,
131 static int xtDeleteUp(tid_t tid, struct inode *ip, struct metapage * fmp,
138 static int xtRelink(tid_t tid, struct inode *ip, xtpage_t * fp);
537 int xtInsert(tid_t tid, /* transaction id */ in xtInsert() argument
617 if ((rc = xtSplitUp(tid, ip, &split, &btstack))) { in xtInsert()
654 tlck = txLock(tid, ip, mp, tlckXTREE | tlckGROW); in xtInsert()
688 xtSplitUp(tid_t tid, in xtSplitUp() argument
745 tlck = txLock(tid, ip, smp, tlckXTREE | tlckGROW); in xtSplitUp()
[all …]
Djfs_dtree.c152 static int dtSplitUp(tid_t tid, struct inode *ip,
155 static int dtSplitPage(tid_t tid, struct inode *ip, struct dtsplit * split,
158 static int dtExtendPage(tid_t tid, struct inode *ip,
161 static int dtSplitRoot(tid_t tid, struct inode *ip,
164 static int dtDeleteUp(tid_t tid, struct inode *ip, struct metapage * fmp,
167 static int dtRelink(tid_t tid, struct inode *ip, dtpage_t * p);
304 static inline void lock_index(tid_t tid, struct inode *ip, struct metapage * mp, in lock_index() argument
311 tlck = txLock(tid, ip, mp, tlckDATA); in lock_index()
334 static u32 add_index(tid_t tid, struct inode *ip, s64 bn, int slot) in add_index() argument
401 xtInitRoot(tid, ip); in add_index()
[all …]
Djfs_txnmgr.c217 TxLock[lid].tid = 0; in txLockFree()
505 void txEnd(tid_t tid) in txEnd() argument
507 struct tblock *tblk = tid_to_tblock(tid); in txEnd()
510 jfs_info("txEnd: tid = %d", tid); in txEnd()
530 jfs_info("txEnd called w/lazy tid: %d, tblk = 0x%p", tid, tblk); in txEnd()
539 jfs_info("txEnd: tid: %d, tblk = 0x%p", tid, tblk); in txEnd()
547 TxAnchor.freetid = tid; in txEnd()
595 struct tlock *txLock(tid_t tid, struct inode *ip, struct metapage * mp, in txLock() argument
625 jfs_info("txLock: tid:%d ip:0x%p mp:0x%p lid:%d", tid, ip, mp, lid); in txLock()
629 if ((xtid = tlck->tid) == tid) { in txLock()
[all …]
Djfs_dtree.h29 tid_t tid; member
254 extern void dtInitRoot(tid_t tid, struct inode *ip, u32 idotdot);
259 extern int dtInsert(tid_t tid, struct inode *ip, struct component_name * key,
262 extern int dtDelete(tid_t tid, struct inode *ip, struct component_name * key,
265 extern int dtModify(tid_t tid, struct inode *ip, struct component_name * key,
Djfs_txnmgr.h26 #define tid_to_tblock(tid) (&TxBlock[tid]) argument
99 tid_t tid; /* 2: transaction id holding lock */ member
274 tid_t tid; /* tid = index of tblock */ member
Dresize.c79 int tid; in jfs_extendfs() local
398 tid = txBegin(sb, COMMIT_FORCE); in jfs_extendfs()
400 if ((rc = xtAppend(tid, ipbmap, 0, xoff, nblocks, &xlen, &xaddr, 0))) { in jfs_extendfs()
401 txEnd(tid); in jfs_extendfs()
409 rc = txCommit(tid, 1, &iplist[0], COMMIT_FORCE); in jfs_extendfs()
411 txEnd(tid); in jfs_extendfs()
Dxattr.c605 static int ea_put(tid_t tid, struct inode *inode, struct ea_buffer *ea_buf, in ea_put() argument
644 txEA(tid, inode, &ji->ea, &ea_buf->new_ea); in ea_put()
652 txEA(tid, inode, &ji->ea, NULL); in ea_put()
668 int __jfs_setxattr(tid_t tid, struct inode *inode, const char *name, in __jfs_setxattr() argument
796 rc = ea_put(tid, inode, &ea_buf, new_size); in __jfs_setxattr()
925 tid_t tid; in __jfs_xattr_set() local
928 tid = txBegin(inode->i_sb, 0); in __jfs_xattr_set()
930 rc = __jfs_setxattr(tid, inode, name, value, size, flags); in __jfs_xattr_set()
932 rc = txCommit(tid, 1, &inode, 0); in __jfs_xattr_set()
933 txEnd(tid); in __jfs_xattr_set()
[all …]
/linux-4.19.296/include/trace/events/
Djbd2.h137 TP_PROTO(dev_t dev, unsigned long tid, unsigned int type,
140 TP_ARGS(dev, tid, type, line_no, requested_blocks),
144 __field( unsigned long, tid )
152 __entry->tid = tid;
160 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->tid,
165 TP_PROTO(dev_t dev, unsigned long tid, unsigned int type,
169 TP_ARGS(dev, tid, type, line_no, buffer_credits, requested_blocks),
173 __field( unsigned long, tid )
182 __entry->tid = tid;
191 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->tid,
[all …]
/linux-4.19.296/fs/jbd2/
Djournal.c539 int jbd2_log_start_commit(journal_t *journal, tid_t tid) in jbd2_log_start_commit() argument
544 ret = __jbd2_log_start_commit(journal, tid); in jbd2_log_start_commit()
559 tid_t tid; in __jbd2_journal_force_commit() local
575 tid = transaction->t_tid; in __jbd2_journal_force_commit()
578 jbd2_log_start_commit(journal, tid); in __jbd2_journal_force_commit()
579 ret = jbd2_log_wait_commit(journal, tid); in __jbd2_journal_force_commit()
631 tid_t tid = journal->j_running_transaction->t_tid; in jbd2_journal_start_commit() local
633 __jbd2_log_start_commit(journal, tid); in jbd2_journal_start_commit()
637 *ptid = tid; in jbd2_journal_start_commit()
658 int jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid) in jbd2_trans_will_send_data_barrier() argument
[all …]
Dcheckpoint.c139 tid_t tid = 0; in __jbd2_log_wait_for_space() local
142 tid = journal->j_committing_transaction->t_tid; in __jbd2_log_wait_for_space()
150 } else if (tid) { in __jbd2_log_wait_for_space()
157 jbd2_log_wait_commit(journal, tid); in __jbd2_log_wait_for_space()
264 tid_t tid = t->t_tid; in jbd2_log_do_checkpoint() local
279 jbd2_log_start_commit(journal, tid); in jbd2_log_do_checkpoint()
280 jbd2_log_wait_commit(journal, tid); in jbd2_log_do_checkpoint()
/linux-4.19.296/drivers/slimbus/
Dmessaging.c24 void slim_msg_response(struct slim_controller *ctrl, u8 *reply, u8 tid, u8 len) in slim_msg_response() argument
31 txn = idr_find(&ctrl->tid_idr, tid); in slim_msg_response()
40 tid, len); in slim_msg_response()
75 txn->tid = ret; in slim_alloc_txn_tid()
92 idr_remove(&ctrl->tid_idr, txn->tid); in slim_free_txn_tid()
135 txn->tid = 0; in slim_do_transfer()
167 if (!clk_pause_msg && (txn->tid == 0 || ret == -ETIMEDOUT)) { in slim_do_transfer()
/linux-4.19.296/include/linux/
Djbd2.h1281 int jbd2_journal_get_log_tail(journal_t *journal, tid_t *tid,
1283 int __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block);
1284 void jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block);
1495 int jbd2_log_start_commit(journal_t *journal, tid_t tid);
1496 int __jbd2_log_start_commit(journal_t *journal, tid_t tid);
1497 int jbd2_journal_start_commit(journal_t *journal, tid_t *tid);
1498 int jbd2_log_wait_commit(journal_t *journal, tid_t tid);
1499 int jbd2_transaction_committed(journal_t *journal, tid_t tid);
1500 int jbd2_complete_transaction(journal_t *journal, tid_t tid);
1502 int jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid);
[all …]
Dposix-timers.h50 static inline clockid_t make_thread_cpuclock(const unsigned int tid, in make_thread_cpuclock() argument
53 return make_process_cpuclock(tid, clock | CPUCLOCK_PERTHREAD_MASK); in make_thread_cpuclock()
/linux-4.19.296/include/net/
Dgtp.h20 __be64 tid; member
27 __be32 tid; member
Dmac80211.h431 u16 tid; member
1927 u8 tid; member
2951 u16 tid; member
4221 void ieee80211_sta_uapsd_trigger(struct ieee80211_sta *sta, u8 tid);
4258 u8 tid, bool buffered);
4816 int tid, struct ieee80211_key_seq *seq);
4836 int tid, struct ieee80211_key_seq *seq);
5130 int ieee80211_start_tx_ba_session(struct ieee80211_sta *sta, u16 tid,
5144 u16 tid);
5157 int ieee80211_stop_tx_ba_session(struct ieee80211_sta *sta, u16 tid);
[all …]
/linux-4.19.296/fs/xfs/libxfs/
Dxfs_log_recover.h16 #define XLOG_RHASH(tid) \ argument
17 ((((uint32_t)tid)>>XLOG_RHASH_SHIFT) & (XLOG_RHASH_SIZE-1))
/linux-4.19.296/include/uapi/linux/
Di2o-dev.h67 unsigned int tid; /* Target device TID */ member
87 unsigned int tid; /* Target device ID */ member
99 unsigned int tid; member
203 __u32 tid:12; member
/linux-4.19.296/drivers/misc/ocxl/
Dlink.c187 int lpid, pid, tid; in xsl_fault_handler() local
197 tid = be32_to_cpu(pe->tid); in xsl_fault_handler()
519 pe->tid = cpu_to_be32(tidr); in ocxl_link_add_pe()
554 int ocxl_link_update_pe(void *link_handle, int pasid, __u16 tid) in ocxl_link_update_pe() argument
569 pe->tid = cpu_to_be32(tid); in ocxl_link_update_pe()
630 be32_to_cpu(pe->pid), be32_to_cpu(pe->tid)); in ocxl_link_remove_pe()
/linux-4.19.296/lib/
Dtest_rhashtable.c62 int tid; member
523 sprintf(buff, "%s val %d (tid=%d)%s", buff, p->value.id, p->value.tid, in print_ht()
560 rhl_test_objects[i].value.tid = i; in test_insert_dup()
618 .tid = tdata->id, in thread_lookup_test()
623 pr_err(" found unexpected object %d-%d\n", key.tid, key.id); in thread_lookup_test()
626 pr_err(" object %d-%d not found!\n", key.tid, key.id); in thread_lookup_test()
630 obj->value.tid, obj->value.id, key.tid, key.id); in thread_lookup_test()
650 tdata->objs[i].value.tid = tdata->id; in threadfunc()
/linux-4.19.296/include/linux/ceph/
Dmsgr.h128 __le64 tid; /* transaction id */ member
146 __le64 tid; /* transaction id */ member

123