Searched refs:history (Results 1 - 25 of 33) sorted by last modified time

12

/linux-master/kernel/bpf/
H A Dverifier.c3323 /* for any branch, call, exit record the history of jmps in the given state */
3338 "verifier insn history bug: insn_idx %d cur flags %x new flags %x\n",
3370 * history then previous instruction came from straight line execution.
3376 * done. If there is still some jump history left, we should keep going. We
3377 * need to take into account that we might have a jump history between given
3379 * history entry recording a jump from last instruction of parent state and
3383 u32 *history)
3385 u32 cnt = *history;
3396 (*history)--;
3572 * - *would be* executed next, if jump history i
3382 get_prev_insn_idx(struct bpf_verifier_state *st, int i, u32 *history) argument
4189 u32 history = st->jmp_history_cnt; local
[all...]
/linux-master/net/core/
H A Ddev.c4721 old_flow = fl->history[fl->history_head];
4722 fl->history[fl->history_head] = new_flow;
H A Ddev.h21 u16 history[FLOW_LIMIT_HISTORY]; member in struct:sd_flow_limit
/linux-master/drivers/gpu/drm/msm/adreno/
H A Da6xx_gpu_state.c1260 a6xx_state->hfi_queue_history[i][j] = queue->history[idx];
1947 drm_printf(p, " queue-history[%u]:", i);
H A Da6xx_hfi.c41 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index;
82 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index;
790 memset(&queue->history, 0xff, sizeof(queue->history));
804 memset(&queue->history, 0xff, sizeof(queue->history));
/linux-master/include/linux/
H A Dtimekeeping.h327 struct system_time_snapshot *history,
H A Ddynamic_queue_limits.h45 #define DQL_HIST_ENT(dql, idx) ((dql)->history[(idx) % DQL_HIST_LEN])
55 unsigned long history[DQL_HIST_LEN]; member in struct:dql
111 * bit trackes time the packet was queued. The dql->history buffer
131 /* Populate the history with an entry (bit) per queued */
/linux-master/net/packet/
H A Daf_packet.c1345 u32 *history = po->rollover->history; local
1351 if (READ_ONCE(history[i]) == rxhash)
1357 if (READ_ONCE(history[victim]) != rxhash)
1358 WRITE_ONCE(history[victim], rxhash);
H A Dinternal.h106 u32 history[ROLLOVER_HLEN] ____cacheline_aligned;
/linux-master/drivers/infiniband/hw/cxgb4/
H A Diw_cxgb4.h853 unsigned long history; member in struct:c4iw_ep_common
H A Dcm.c154 set_bit(CM_ID_DEREFED, &epc->history);
159 set_bit(CM_ID_REFED, &epc->history);
167 set_bit(QP_DEREFED, &ep->com.history);
173 set_bit(QP_REFED, &ep->com.history);
931 set_bit(ACT_OPEN_REQ, &ep->com.history);
1246 set_bit(ACT_ESTAB, &ep->com.history);
1280 set_bit(CLOSE_UPCALL, &ep->com.history);
1295 set_bit(DISCONN_UPCALL, &ep->com.history);
1312 set_bit(ABORT_UPCALL, &ep->com.history);
1352 set_bit(CONN_RPL_UPCALL, &ep->com.history);
[all...]
H A Drestrack.c238 if (rdma_nl_put_driver_u64_hex(msg, "history", epcp->history))
/linux-master/drivers/s390/net/
H A Dfsm.c98 int e = fi->history[idx].event;
99 int s = fi->history[idx++].state;
115 fi->history[fi->history_index].state = state;
116 fi->history[fi->history_index++].event = event;
/linux-master/drivers/gpu/drm/display/
H A Ddrm_dp_mst_topology.c1530 struct drm_dp_mst_topology_ref_history *history,
1545 for (i = 0; i < history->len; i++) {
1546 if (history->entries[i].backtrace == backtrace) {
1547 entry = &history->entries[i];
1555 int new_len = history->len + 1;
1557 new = krealloc(history->entries, sizeof(*new) * new_len,
1562 entry = &new[history->len];
1563 history->len = new_len;
1564 history->entries = new;
1598 struct drm_dp_mst_topology_ref_history *history,
1529 __topology_ref_save(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_topology_ref_history *history, enum drm_dp_mst_topology_ref_type type) argument
1597 __dump_topology_ref_history(struct drm_device *drm, struct drm_dp_mst_topology_ref_history *history, void *ptr, const char *type_str) argument
[all...]
/linux-master/lib/
H A Ddynamic_queue_limits.c62 dql->history))
78 now, dql->history);
200 memset(dql->history, 0, sizeof(dql->history));
/linux-master/kernel/time/
H A Dtimekeeping.c1105 * @history: Snapshot representing start of history
1106 * @partial_history_cycles: Cycle offset into history (fractional part)
1107 * @total_history_cycles: Total history length in cycles
1108 * @discontinuity: True indicates clock was set on history period
1115 * total_history_* quantities are the total history starting at the provided
1120 static int adjust_historical_crosststamp(struct system_time_snapshot *history, argument
1134 /* Interpolate shortest distance from beginning or end of history */
1145 ktime_sub(ts->sys_monoraw, history->raw));
1152 * If there is a discontinuity in the history, scal
[all...]
/linux-master/fs/
H A Dfs-writeback.c236 * We record, very roughly, 2s worth of IO time history and if more than
787 * oscillation, the detection mechanism keeps track of history and gives
810 u16 history; local
816 history = inode->i_wb_frn_history;
854 * history mask where each bit represents one sixteenth of
856 * history from @max_time.
860 history <<= slots;
862 history |= (1U << slots) - 1;
864 if (history)
865 trace_inode_foreign_history(inode, wbc, history);
[all...]
/linux-master/drivers/gpu/drm/i915/gt/
H A Dselftest_rps.c153 u8 history[64], i; local
158 memset(history, freq, sizeof(history));
175 if (!memchr_inv(history, act, sizeof(history)))
178 history[i] = act;
179 i = (i + 1) % ARRAY_SIZE(history);
H A Dselftest_timeline.c68 struct intel_timeline **history; member in struct:mock_hwsp_freelist
81 tl = xchg(&state->history[idx], tl);
127 i915_prandom_shuffle(state->history,
128 sizeof(*state->history),
171 state.max = PAGE_SIZE / sizeof(*state.history);
173 state.history = kcalloc(state.max, sizeof(*state.history), GFP_KERNEL);
174 if (!state.history) {
191 kfree(state.history);
/linux-master/arch/x86/kernel/cpu/mce/
H A Dthreshold.c41 * but the precise history of that storm is unknown. Assume
46 storm->banks[bank].history = ~0ull;
89 storm->banks[bank].history = 0;
102 u64 history = 0; local
110 * the history mask will record about the last minute of poll results.
114 * to apply to history.
121 /* If it has been a long time since the last poll, clear history. */
123 history = storm->banks[mce->bank].history << shift;
129 history |
[all...]
H A Dinternal.h80 * history: Bitmask tracking errors occurrence. Each set bit
88 u64 history; member in struct:storm_bank
96 /* How many errors within the history buffer mark the start of a storm. */
101 * the storm is over. Since it is tracked by the bitmasks in the history
/linux-master/scripts/
H A Dget_maintainer.pl1054 --git-since => git history to use (default: $email_git_since)
1055 --hg-since => hg history to use (default: $email_hg_since)
1846 g use git history [$email_git]
1852 d# history to use [$$date_ref]
2017 history of files in the patch. Also, each line of the current file can
/linux-master/security/apparmor/
H A Dmatch.c640 if (wb->history[pos] < state)
644 if (wb->history[pos] == state) {
684 wb->history[wb->pos] = state;
703 wb->history[wb->pos] = state;
/linux-master/security/apparmor/include/
H A Dmatch.h143 unsigned int size; /* power of 2, same as history size */
144 unsigned int history[WB_HISTORY_SIZE]; member in struct:match_workbuf
/linux-master/include/trace/events/
H A Dwriteback.h182 unsigned int history),
184 TP_ARGS(inode, wbc, history),
190 __field(unsigned int, history)
197 __entry->history = history;
200 TP_printk("bdi %s: ino=%lu cgroup_ino=%lu history=0x%x",
204 __entry->history

Completed in 465 milliseconds

12