Searched refs:missed (Results 1 - 25 of 28) sorted by relevance

12

/linux-master/lib/
H A Dratelimit.c54 if (rs->missed) {
58 func, rs->missed);
59 rs->missed = 0;
69 rs->missed++;
/linux-master/include/linux/
H A Dratelimit.h30 if (rs->missed) {
32 current->comm, rs->missed);
33 rs->missed = 0;
H A Dratelimit_types.h21 int missed; member in struct:ratelimit_state
H A Dtrace_events.h775 unsigned long *missed);
815 u64 *probe_addr, unsigned long *missed)
891 unsigned long *missed,
812 bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id, u32 *fd_type, const char **buf, u64 *probe_offset, u64 *probe_addr, unsigned long *missed) argument
/linux-master/net/netfilter/
H A Dnf_conntrack_ecache.c129 const u32 missed,
137 if (!((events | missed) & e->ctmask))
148 ret = notify->ct_event(events | missed, item);
151 if (likely(ret >= 0 && missed == 0))
155 old = READ_ONCE(e->missed);
159 want = old & ~missed;
160 } while (cmpxchg(&e->missed, old, want) != old);
170 unsigned int missed; local
186 /* This is a resent of a destroy event? If so, skip missed */
187 missed
127 __nf_conntrack_eventmask_report(struct nf_conntrack_ecache *e, const u32 events, const u32 missed, const struct nf_ct_event *item) argument
[all...]
/linux-master/kernel/trace/
H A Dring_buffer_benchmark.c125 /* The commit may have missed event flags set, clear them */
238 unsigned long missed = 0; local
258 missed++;
336 trace_printk("Missed: %ld\n", missed);
354 if (missed) {
356 missed /= (long)time;
359 hit + missed);
361 /* it is possible that hit + missed will overflow and be zero */
362 if (!(hit + missed)) {
363 trace_printk("hit + missed overflowe
[all...]
H A Dtrace_kprobe.c1651 u64 *probe_addr, unsigned long *missed,
1671 if (missed)
1672 *missed = trace_kprobe_missed(tk);
1649 bpf_get_kprobe_info(const struct perf_event *event, u32 *fd_type, const char **symbol, u64 *probe_offset, u64 *probe_addr, unsigned long *missed, bool perf_type_tracepoint) argument
/linux-master/arch/x86/mm/pat/
H A Dcpa-test.c51 long i, expected, missed = 0; local
64 missed++;
98 s->max_exec, missed);
101 expected = (s->gpg*GPS + s->lpg*LPS)/PAGE_SIZE + s->spg + missed;
/linux-master/drivers/usb/dwc2/
H A Dhcd_queue.c1791 * Return: number missed by (or 0 if we didn't miss).
1798 int missed = 0; local
1825 * OOPS, we missed. That's actually pretty bad since
1828 missed = dwc2_frame_num_dec(prev_frame_number,
1833 return missed;
1854 * Return: number missed by (or 0 if we didn't miss).
1859 int missed = 0; local
1870 * will have missed in this case anyway. Just go to exit. If we want
1924 missed = dwc2_frame_num_dec(qh->start_active_frame,
1931 return missed;
1952 int missed; local
[all...]
/linux-master/include/net/netfilter/
H A Dnf_conntrack_ecache.h25 u32 missed; /* missed events */ member in struct:nf_conntrack_ecache
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dmissed.c10 * to kprobe recursion check and kprobe missed counter is incremented.
39 ASSERT_EQ(info.perf_event.kprobe.missed, 1, "info.perf_event.kprobe.missed");
/linux-master/block/
H A Dblk-iolatency.c114 /* The latency that we missed. */
129 u64 missed; member in struct:percentile_stats
203 stat->ps.missed = 0;
214 sum->ps.missed += stat->ps.missed;
225 stat->ps.missed++;
238 return stat->ps.missed < thresh;
933 seq_printf(s, " missed=%llu total=%llu depth=max",
934 (unsigned long long)stat.ps.missed,
937 seq_printf(s, " missed
[all...]
H A Dblk-iocost.c399 struct ioc_missed missed[2]; member in struct:ioc_pcpu_stat
1604 u32 this_met = local_read(&stat->missed[rw].nr_met);
1605 u32 this_missed = local_read(&stat->missed[rw].nr_missed);
1607 nr_met[rw] += this_met - stat->missed[rw].last_met;
1608 nr_missed[rw] += this_missed - stat->missed[rw].last_missed;
1609 stat->missed[rw].last_met = this_met;
1610 stat->missed[rw].last_missed = this_missed;
2832 local_inc(&ccs->missed[rw].nr_met);
2834 local_inc(&ccs->missed[rw].nr_missed);
2892 for (i = 0; i < ARRAY_SIZE(ccs->missed);
[all...]
/linux-master/net/ipv4/
H A Dudp_tunnel_nic.c36 * @missed: bitmap of tables which overflown
49 unsigned long missed; member in struct:udp_tunnel_nic
148 if (!utn->missed)
153 if (!test_bit(i, &utn->missed))
359 __set_bit(i, &utn->missed);
494 __set_bit(i, &utn->missed);
523 * Rely on utn->missed to re-add this port later.
692 utn->missed = 0;
766 BUILD_BUG_ON(sizeof(utn->missed) * BITS_PER_BYTE <
/linux-master/drivers/net/ethernet/dec/tulip/
H A Dinterrupt.c528 int missed; local
813 if ((missed = ioread32(ioaddr + CSR8) & 0x1ffff)) {
814 dev->stats.rx_dropped += missed & 0x10000 ? 0x10000 : missed;
/linux-master/drivers/media/pci/cx88/
H A Dcx88-input.c170 u64 missed; local
174 missed = hrtimer_forward_now(&ir->timer,
176 if (missed > 1)
177 ir_dprintk("Missed ticks %llu\n", missed - 1);
/linux-master/tools/bpf/bpftool/
H A Dlink.c294 jsonw_uint_field(json_wtr, "missed", info->kprobe_multi.missed);
371 jsonw_uint_field(wtr, "missed", info->perf_event.kprobe.missed);
724 if (info->kprobe_multi.missed)
725 printf("missed %llu ", info->kprobe_multi.missed);
800 if (info->perf_event.kprobe.missed)
801 printf(" missed %llu", info->perf_event.kprobe.missed);
[all...]
/linux-master/drivers/usb/gadget/function/
H A Du_serial.c95 size_t missed; member in struct:gs_console
913 if (cons->missed && ep->maxpacket >= 64) {
917 len = sprintf(buf, "\n[missed %zu bytes]\n", cons->missed);
919 cons->missed = 0;
952 cons->missed += count - n;
/linux-master/drivers/net/wireless/intel/iwlegacy/
H A Ddebug.c1206 int missed; local
1212 if (sscanf(buf, "%d", &missed) != 1)
1215 if (missed < IL_MISSED_BEACON_THRESHOLD_MIN ||
1216 missed > IL_MISSED_BEACON_THRESHOLD_MAX)
1219 il->missed_beacon_threshold = missed;
/linux-master/drivers/char/
H A Drandom.c727 if (urandom_warning.missed)
728 pr_notice("%d urandom warning(s) missed due to ratelimiting\n",
729 urandom_warning.missed);
1445 ++urandom_warning.missed;
/linux-master/drivers/dma/ti/
H A Dedma.c225 int missed; member in struct:edma_chan
788 if (echan->missed) {
794 dev_dbg(dev, "missed event on channel %d\n", echan->ch_num);
799 echan->missed = 0;
1551 * Issue later based on missed flag which will be sure
1560 * slot. So we avoid doing so and set the missed flag.
1564 echan->missed = 1;
1568 * missed, so its safe to issue it here.
1617 /* Event missed register(s) */
/linux-master/include/uapi/linux/
H A Dbpf.h6668 __u64 missed; member in struct:bpf_link_info::__anon2663::__anon2677
6696 __u64 missed; member in struct:bpf_link_info::__anon2663::__anon2679::__anon2680::__anon2682
/linux-master/tools/include/uapi/linux/
H A Dbpf.h6668 __u64 missed; member in struct:bpf_link_info::__anon3204::__anon3218
6696 __u64 missed; member in struct:bpf_link_info::__anon3204::__anon3220::__anon3221::__anon3223
/linux-master/drivers/net/wireless/intel/iwlwifi/dvm/
H A Ddebugfs.c1927 int missed; local
1933 if (sscanf(buf, "%d", &missed) != 1)
1936 if (missed < IWL_MISSED_BEACON_THRESHOLD_MIN ||
1937 missed > IWL_MISSED_BEACON_THRESHOLD_MAX)
1941 priv->missed_beacon_threshold = missed;
/linux-master/kernel/bpf/
H A Dsyscall.c3606 u32 *fd_type, unsigned long *missed)
3617 probe_offset, probe_addr, missed);
3640 unsigned long missed; local
3649 &type, &missed);
3658 info->perf_event.kprobe.missed = missed;
3603 bpf_perf_link_fill_common(const struct perf_event *event, char __user *uname, u32 ulen, u64 *probe_offset, u64 *probe_addr, u32 *fd_type, unsigned long *missed) argument

Completed in 477 milliseconds

12