/linux-2.4.37.9/arch/mips/hp-lj/ |
D | int-handler.S | 18 # The cause register indicates which are pending 21 # and pass an integer indicating which was the highest priority pending interrupt 31 mfc0 t0,CP0_CAUSE # get pending interrupts 34 andi t0,0xff00 # isolate pending bits 35 sll t0,16 # shift the pending bits down 36 beqz t0,3f # no pending intrs, then spurious 45 1: bltz t0,2f # found pending irq
|
/linux-2.4.37.9/kernel/ |
D | softirq.c | 64 __u32 pending; in do_softirq() local 73 pending = softirq_pending(cpu); in do_softirq() 75 if (pending) { in do_softirq() 78 mask = ~pending; in do_softirq() 89 if (pending & 1) in do_softirq() 92 pending >>= 1; in do_softirq() 93 } while (pending); in do_softirq() 97 pending = softirq_pending(cpu); in do_softirq() 98 if (pending & mask) { in do_softirq() 99 mask &= ~pending; in do_softirq() [all …]
|
D | signal.c | 56 s = tsk->pending.signal.sig; in next_signal() 109 flush_sigqueue(&t->pending); in flush_signals() 123 flush_sigqueue(&tsk->pending); in exit_sighand() 154 sigaddset(¤t->pending.signal, sig); in sig_exit() 284 if (!collect_signal(sig, ¤t->pending, info)) in dequeue_signal() 331 return rm_from_queue(sig, &t->pending); in rm_sig_from_queue() 535 int retval = send_signal(sig, info, &t->pending); in deliver_signal() 581 if (sig < SIGRTMIN && sigismember(&t->pending.signal, sig)) in send_sig_info() 927 sigset_t pending; in do_sigpending() local 933 sigandsets(&pending, ¤t->blocked, ¤t->pending.signal); in do_sigpending() [all …]
|
/linux-2.4.37.9/crypto/ |
D | michael_mic.c | 20 u8 pending[4]; member 88 memcpy(&mctx->pending[mctx->pending_len], data, flen); in michael_update() 96 mctx->l ^= get_le32(mctx->pending); in michael_update() 110 memcpy(mctx->pending, data, len); in michael_update() 118 u8 *data = mctx->pending; in michael_final()
|
/linux-2.4.37.9/drivers/char/ |
D | efirtc.c | 159 unsigned char enabled, pending; in efi_rtc_ioctl() local 240 status = efi.get_wakeup_time((efi_bool_t *)&enabled, (efi_bool_t *)&pending, &eft); in efi_rtc_ioctl() 249 || put_user(pending, &ewp->pending)) return -EFAULT; in efi_rtc_ioctl() 308 efi_bool_t enabled, pending; in efi_rtc_get_status() local 314 efi.get_wakeup_time(&enabled, &pending, &alm); in efi_rtc_get_status() 343 pending == 1 ? "yes" : "no"); in efi_rtc_get_status()
|
/linux-2.4.37.9/Documentation/networking/ |
D | proc_net_tcp.txt | 42 0 no timer is pending 43 1 retransmit-timer is pending 44 2 another timer (e.g. delayed ack or keepalive) is pending 47 4 zero window probe timer is pending
|
/linux-2.4.37.9/net/ipv4/ |
D | tcp_timer.c | 53 tp->pending = 0; in tcp_init_xmit_timers() 58 tp->ack.pending = 0; in tcp_init_xmit_timers() 69 tp->pending = 0; in tcp_clear_xmit_timers() 74 tp->ack.pending = 0; in tcp_clear_xmit_timers() 227 if (sk->state == TCP_CLOSE || !(tp->ack.pending&TCP_ACK_TIMER)) in tcp_delack_timer() 235 tp->ack.pending &= ~TCP_ACK_TIMER; in tcp_delack_timer() 433 if (sk->state == TCP_CLOSE || !tp->pending) in tcp_write_timer() 442 event = tp->pending; in tcp_write_timer() 443 tp->pending = 0; in tcp_write_timer()
|
/linux-2.4.37.9/arch/mips64/kernel/ |
D | semaphore.c | 209 int waking, pending, ret = 0; in waking_non_zero_interruptible() local 212 pending = signal_pending(tsk); in waking_non_zero_interruptible() 219 } else if (pending) { in waking_non_zero_interruptible()
|
/linux-2.4.37.9/arch/mips/kernel/ |
D | semaphore.c | 209 int waking, pending, ret = 0; in waking_non_zero_interruptible() local 212 pending = signal_pending(tsk); in waking_non_zero_interruptible() 219 } else if (pending) { in waking_non_zero_interruptible()
|
/linux-2.4.37.9/drivers/atm/ |
D | ambassador.c | 589 if (cq->pending < cq->maximum) { in command_do() 598 cq->pending++; in command_do() 606 timeout = (cq->pending*HZ+999)/1000; in command_do() 608 if (cq->pending > cq->high) in command_do() 609 cq->high = cq->pending; in command_do() 636 cq->pending--; in command_do() 664 if (txq->pending < txq->maximum) { in tx_give() 668 txq->pending++; in tx_give() 674 if (txq->pending > txq->high) in tx_give() 675 txq->high = txq->pending; in tx_give() [all …]
|
/linux-2.4.37.9/arch/mips/sibyte/sb1250/ |
D | irq.c | 208 u64 pending; in ack_sb1250_irq() local 216 pending = in64(KSEG1 + A_IMR_REGISTER(sb1250_irq_owner[irq], in ack_sb1250_irq() 218 pending &= ((u64)1 << (irq)); in ack_sb1250_irq() 219 if (pending) { in ack_sb1250_irq() 226 out64(pending, in ack_sb1250_irq()
|
/linux-2.4.37.9/arch/arm/kernel/ |
D | irq.c | 121 if (desc->pending) { in enable_irq() 122 desc->pending = 0; in enable_irq() 247 if (desc->pending && desc->disable_depth == 0) { in do_IRQ() 248 desc->pending = 0; in do_IRQ() 253 } while (desc->pending && desc->disable_depth == 0); in do_IRQ() 269 desc->pending = 1; in do_IRQ() 446 desc->pending = 0; in setup_arm_irq()
|
/linux-2.4.37.9/drivers/cdrom/ |
D | mcdx.c | 183 volatile int pending; /* next sector to be read */ member 869 if (!stuffp->busy && stuffp->pending) in mcdx_intr() 1331 if (stuffp->valid && (sector >= stuffp->pending) in mcdx_xfer() 1377 stuffp->busy = (3 == (stuffp->pending & 3)); in mcdx_xfer() 1381 if (stuffp->xa && (0 == (stuffp->pending & 3))) { in mcdx_xfer() 1394 if ((3 == (stuffp->pending & 3)) && stuffp->xa) { in mcdx_xfer() 1400 if (stuffp->pending == sector) { in mcdx_xfer() 1405 } while (++(stuffp->pending) < border); in mcdx_xfer() 1426 stuffp->pending = sector & ~3; in mcdx_xfer() 1429 if (stuffp->pending > stuffp->lastsector) { in mcdx_xfer() [all …]
|
/linux-2.4.37.9/drivers/char/drm-4.0/ |
D | lists.c | 134 if (buf->waiting || buf->pending || buf->list == DRM_LIST_FREE) { in drm_freelist_put() 136 buf->idx, buf->waiting, buf->pending, buf->list); in drm_freelist_put() 183 if (buf->waiting || buf->pending) { in drm_freelist_try() 185 buf->idx, buf->waiting, buf->pending, buf->list); in drm_freelist_try()
|
/linux-2.4.37.9/arch/mips/galileo-boards/ev96100/ |
D | int-handler.S | 13 mfc0 t0, CP0_CAUSE # get pending interrupts 18 andi t0,0xff00 # isolate pending bits
|
/linux-2.4.37.9/drivers/char/drm/ |
D | drm_lists.h | 143 if (buf->waiting || buf->pending || buf->list == DRM_LIST_FREE) { in DRM() 145 buf->idx, buf->waiting, buf->pending, buf->list); in DRM() 192 if (buf->waiting || buf->pending) { in DRM() 194 buf->idx, buf->waiting, buf->pending, buf->list); in DRM()
|
/linux-2.4.37.9/include/asm-sparc/ |
D | obio.h | 171 unsigned pending; in cc_get_ipen() local 174 "=r" (pending) : in cc_get_ipen() 177 return pending; in cc_get_ipen()
|
/linux-2.4.37.9/drivers/block/ |
D | ll_rw_blk.c | 460 q->rq.pending[READ] = q->rq.pending[WRITE] = 0; in blk_init_free_list() 564 if ((rw == WRITE) || (rw == READ && rl->pending[READ] > rlim)) in get_request() 574 rl->pending[rw]++; in get_request() 902 rl->pending[req->cmd]--; in blkdev_release_request() 903 if (rl->pending[READ] > q->nr_requests) in blkdev_release_request() 904 printk("blk: reads: %u\n", rl->pending[READ]); in blkdev_release_request() 905 if (rl->pending[WRITE] > q->nr_requests) in blkdev_release_request() 906 printk("blk: writes: %u\n", rl->pending[WRITE]); in blkdev_release_request() 907 if (rl->pending[READ] + rl->pending[WRITE] > q->nr_requests) in blkdev_release_request() 908 printk("blk: r/w: %u + %u > %u\n", rl->pending[READ], rl->pending[WRITE], q->nr_requests); in blkdev_release_request()
|
/linux-2.4.37.9/arch/mips/ite-boards/generic/ |
D | int-handler.S | 20 mfc0 t0,CP0_CAUSE # get pending interrupts 24 andi t0,0xff00 # isolate pending bits
|
/linux-2.4.37.9/drivers/acpi/events/ |
D | evmisc.c | 471 u8 pending = FALSE; in acpi_ev_release_global_lock() local 496 ACPI_RELEASE_GLOBAL_LOCK (acpi_gbl_common_fACS.global_lock, pending); in acpi_ev_release_global_lock() 503 if (pending) { in acpi_ev_release_global_lock()
|
/linux-2.4.37.9/arch/mips/au1000/common/ |
D | int-handler.S | 27 mfc0 t0,CP0_CAUSE # get pending interrupts 31 andi t0,0xff00 # isolate pending bits
|
/linux-2.4.37.9/arch/mips/jazz/ |
D | int-handler.S | 35 mfc0 t0,CP0_CAUSE # get pending interrupts 38 andi t0,0xff00 # isolate pending bits 47 1: bltz t0,2f # found pending irq
|
/linux-2.4.37.9/arch/parisc/kernel/ |
D | signal32.c | 43 old_sigset_t pending; in sys32_sigpending() local 46 KERNEL_SYSCALL(ret, sys_sigpending, &pending); in sys32_sigpending() 49 if (put_old_sigset32(set, &pending)) in sys32_sigpending()
|
/linux-2.4.37.9/drivers/net/tokenring/ |
D | madgemc.c | 463 int pending,reg1; in madgemc_interrupt() local 474 pending = inb(dev->base_addr + MC_CONTROL_REG0); in madgemc_interrupt() 475 if (!(pending & MC_CONTROL_REG0_SINTR)) in madgemc_interrupt() 484 pending = STS_SYSTEM_IRQ; in madgemc_interrupt() 486 if (pending & STS_SYSTEM_IRQ) { in madgemc_interrupt() 497 pending = SIFREADW(SIFSTS); /* restart - the SIF way */ in madgemc_interrupt()
|
/linux-2.4.37.9/arch/sparc64/kernel/ |
D | irq.c | 301 int pending = 0; in request_irq() local 419 pending = bucket->pending; in request_irq() 420 if(pending) in request_irq() 421 bucket->pending = 0; in request_irq() 440 if(pending) { in request_irq() 732 bucket->pending = 1; in catch_disabled_ivec() 891 bp->pending = 1; in handler_irq()
|