Home
last modified time | relevance | path

Searched refs:steal (Results 1 – 34 of 34) sorted by relevance

/linux-4.1.27/drivers/media/pci/ivtv/
Divtv-queue.c122 int ivtv_queue_move(struct ivtv_stream *s, struct ivtv_queue *from, struct ivtv_queue *steal, in ivtv_queue_move() argument
138 bytes_steal = (from_free && steal) ? steal->length : 0; in ivtv_queue_move()
145 struct ivtv_buffer *buf = list_entry(steal->list.prev, struct ivtv_buffer, list); in ivtv_queue_move()
153 list_move_tail(steal->list.prev, &from->list); in ivtv_queue_move()
155 steal->buffers--; in ivtv_queue_move()
156 steal->length -= s->buf_size; in ivtv_queue_move()
157 steal->bytesused -= buf->bytesused - buf->readpos; in ivtv_queue_move()
162 if (list_empty(&steal->list)) in ivtv_queue_move()
164 buf = list_entry(steal->list.prev, struct ivtv_buffer, list); in ivtv_queue_move()
Divtv-queue.h74 int ivtv_queue_move(struct ivtv_stream *s, struct ivtv_queue *from, struct ivtv_queue *steal,
/linux-4.1.27/fs/proc/
Dstat.c84 u64 user, nice, system, idle, iowait, irq, softirq, steal; in show_stat() local
92 irq = softirq = steal = 0; in show_stat()
105 steal += kcpustat_cpu(i).cpustat[CPUTIME_STEAL]; in show_stat()
128 seq_put_decimal_ull(p, ' ', cputime64_to_clock_t(steal)); in show_stat()
142 steal = kcpustat_cpu(i).cpustat[CPUTIME_STEAL]; in show_stat()
153 seq_put_decimal_ull(p, ' ', cputime64_to_clock_t(steal)); in show_stat()
/linux-4.1.27/arch/s390/kernel/
Dvtime.c69 u64 timer, clock, user, system, steal; in do_account_vtime() local
131 steal = S390_lowcore.steal_timer; in do_account_vtime()
132 if ((s64) steal > 0) { in do_account_vtime()
134 account_steal_time(steal); in do_account_vtime()
/linux-4.1.27/drivers/gpu/drm/radeon/
Dradeon_object.c591 int steal; in radeon_bo_get_surface_reg() local
605 steal = -1; in radeon_bo_get_surface_reg()
614 steal = i; in radeon_bo_get_surface_reg()
619 if (steal == -1) in radeon_bo_get_surface_reg()
622 reg = &rdev->surface_regs[steal]; in radeon_bo_get_surface_reg()
625 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object); in radeon_bo_get_surface_reg()
628 i = steal; in radeon_bo_get_surface_reg()
/linux-4.1.27/arch/x86/kernel/
Dkvm.c404 u64 steal; in kvm_steal_clock() local
412 steal = src->steal; in kvm_steal_clock()
416 return steal; in kvm_steal_clock()
/linux-4.1.27/arch/x86/include/uapi/asm/
Dkvm_para.h45 __u64 steal; member
/linux-4.1.27/scripts/rt-tester/
Dcheck-all.sh17 testit t3-l1-pi-steal.tst
Dt3-l1-pi-steal.tst48 # 3 threads 1 lock PI steal pending ownership
/linux-4.1.27/include/linux/
Dpipe_fs_i.h108 int (*steal)(struct pipe_inode_info *, struct pipe_buffer *); member
/linux-4.1.27/kernel/sched/
Dcputime.c261 u64 steal; in steal_account_process_tick() local
264 steal = paravirt_steal_clock(smp_processor_id()); in steal_account_process_tick()
265 steal -= this_rq()->prev_steal_time; in steal_account_process_tick()
272 steal_jiffies = nsecs_to_jiffies(steal); in steal_account_process_tick()
Dcore.c842 s64 steal = 0, irq_delta = 0; in update_rq_clock_task() local
870 steal = paravirt_steal_clock(cpu_of(rq)); in update_rq_clock_task()
871 steal -= rq->prev_steal_time_rq; in update_rq_clock_task()
873 if (unlikely(steal > delta)) in update_rq_clock_task()
874 steal = delta; in update_rq_clock_task()
876 rq->prev_steal_time_rq += steal; in update_rq_clock_task()
877 delta -= steal; in update_rq_clock_task()
884 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY)) in update_rq_clock_task()
885 sched_rt_avg_update(rq, irq_delta + steal); in update_rq_clock_task()
/linux-4.1.27/Documentation/virtual/kvm/
Dcpuid.txt46 KVM_FEATURE_STEAL_TIME || 5 || steal time can be enabled by
Dmsr.txt208 __u64 steal;
231 steal: the amount of time in which this vCPU did not run, in
233 reported as steal time.
Dtimekeeping.txt471 steal cycles from the naturally on X86 systems when SMM mode is used by the
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/
Dinitrd.txt3 here is to steal the initrd file used on your Linux laptop, Ubuntu in
/linux-4.1.27/Documentation/
Dcpu-load.txt11 avg-cpu: %user %nice %system %iowait %steal %idle
Dintel_txt.txt146 attempt to crash the system to gain control on reboot and steal
Dkernel-parameters.txt2441 no-steal-acc [X86,KVM] Disable paravirtualized steal time accounting.
2442 steal time is computed, but won't influence scheduler
/linux-4.1.27/lib/raid6/
Daltivec.uc21 * you can just "steal" the vec unit with enable_kernel_altivec() (but
/linux-4.1.27/fs/
Dsplice.c141 .steal = page_cache_pipe_buf_steal,
159 .steal = user_page_pipe_buf_steal,
554 .steal = generic_pipe_buf_steal,
569 .steal = generic_pipe_buf_nosteal,
Dpipe.c216 .steal = generic_pipe_buf_steal,
224 .steal = generic_pipe_buf_steal,
/linux-4.1.27/Documentation/locking/
Drt-mutex.txt67 by it (bit 0 is cleared) a competing higher priority thread can "steal"
Drt-mutex-design.txt551 process "steal" the mutex from the pending owner (only if it is still pending)
596 mutex doesn't have a owner, or if we can steal the mutex from a pending
699 Note: For various reasons, because of timeout and signals, the steal mutex
/linux-4.1.27/arch/x86/include/asm/
Dkvm_host.h455 struct kvm_steal_time steal; member
/linux-4.1.27/kernel/
Drelay.c1200 .steal = generic_pipe_buf_steal,
/linux-4.1.27/arch/x86/kvm/
Dx86.c2125 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)))) in record_steal_time()
2128 vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal; in record_steal_time()
2129 vcpu->arch.st.steal.version += 2; in record_steal_time()
2133 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)); in record_steal_time()
/linux-4.1.27/Documentation/vm/
Dfrontswap.txt140 Dickins has observed that frontswap could probably steal one of
/linux-4.1.27/drivers/char/
Dvirtio_console.c885 if (buf->ops->steal(pipe, buf) == 0) { in pipe_to_sg()
/linux-4.1.27/drivers/mmc/host/
DKconfig91 disabled, it will steal the MMC cards away - rendering them
/linux-4.1.27/fs/fuse/
Ddev.c879 if (buf->ops->steal(cs->pipe, buf) != 0) in fuse_try_move_page()
/linux-4.1.27/kernel/trace/
Dtrace.c4794 .steal = generic_pipe_buf_steal,
5687 .steal = generic_pipe_buf_steal,
/linux-4.1.27/arch/x86/
DKconfig706 bool "Paravirtual steal time accounting"
710 Select this option to enable fine granularity task steal time
/linux-4.1.27/Documentation/filesystems/
Dproc.txt1287 - steal: involuntary wait