/linux-3.3/arch/powerpc/platforms/44x/ |
D | warp.c | 115 struct dtm_shutdown *shutdown; in pika_dtm_register_shutdown() local 117 shutdown = kmalloc(sizeof(struct dtm_shutdown), GFP_KERNEL); in pika_dtm_register_shutdown() 118 if (shutdown == NULL) in pika_dtm_register_shutdown() 121 shutdown->func = func; in pika_dtm_register_shutdown() 122 shutdown->arg = arg; in pika_dtm_register_shutdown() 124 list_add(&shutdown->list, &dtm_shutdown_list); in pika_dtm_register_shutdown() 131 struct dtm_shutdown *shutdown; in pika_dtm_unregister_shutdown() local 133 list_for_each_entry(shutdown, &dtm_shutdown_list, list) in pika_dtm_unregister_shutdown() 134 if (shutdown->func == func && shutdown->arg == arg) { in pika_dtm_unregister_shutdown() 135 list_del(&shutdown->list); in pika_dtm_unregister_shutdown() [all …]
|
/linux-3.3/net/sctp/ |
D | sm_statefuns.c | 177 * Process the final SHUTDOWN COMPLETE. 180 * Upon reception of the SHUTDOWN COMPLETE chunk the endpoint will verify 181 * that it is in SHUTDOWN-ACK-SENT state, if it is not the chunk should be 182 * discarded. If the endpoint is in the SHUTDOWN-ACK-SENT state the endpoint 183 * should stop the T2-shutdown timer and remove all knowledge of the 187 * C) Rules for packet carrying SHUTDOWN COMPLETE: 189 * - The receiver of a SHUTDOWN COMPLETE shall accept the packet 197 * SHUTDOWN COMPLETE if it is not in the SHUTDOWN-ACK-SENT state. 222 * SHUTDOWN COMPLETE with any other chunks. in sctp_sf_do_4_C() 234 * H) SHUTDOWN COMPLETE notification in sctp_sf_do_4_C() [all …]
|
/linux-3.3/include/xen/interface/ |
D | sched.h | 22 * of this hypercall, supporting only the commands yield, block and shutdown: 68 * Declare a shutdown for another domain. The main use of this function is 69 * in interpreting shutdown requests and reasons for fully-virtualized 80 * Latch a shutdown code, so that when the domain later shuts down it 89 * With id == 0, setup a domain watchdog timer to cause domain shutdown 103 * not care about the shutdown code.
|
/linux-3.3/net/netfilter/ipvs/ |
D | ip_vs_proto_sctp.c | 548 * SHUTDOWN from the client, move to SHUDDOWN_CLI 552 * SHUTDOWN from the server, move to SHUTDOWN_SER 566 * SHUTDOWN sent from the client, waitinf for SHUT ACK from the server 607 * SHUTDOWN resent from the client, move to SHUDDOWN_CLI 611 * SHUTDOWN from the server, move to SHUTDOWN_SER 620 * Server sent SHUTDOWN ACK, this is what we are expecting, let's move 625 * SHUTDOWN COM from client, this should not happen, let's close the 633 * SHUTDOWN sent from the server, waitinf for SHUTDOWN ACK from client 674 * SHUTDOWN resent from the client, move to SHUDDOWN_CLI 678 * SHUTDOWN resent from the server, move to SHUTDOWN_SER [all …]
|
/linux-3.3/drivers/usb/host/ |
D | ehci-xilinx-of.c | 113 .shutdown = ehci_shutdown, 244 * ehci_hcd_xilinx_of_remove - shutdown hcd and release resources 268 * ehci_hcd_xilinx_of_shutdown - shutdown the hcd 271 * Properly shutdown the hcd, call driver's shutdown routine. 277 if (hcd->driver->shutdown) in ehci_hcd_xilinx_of_shutdown() 278 hcd->driver->shutdown(hcd); in ehci_hcd_xilinx_of_shutdown() 293 .shutdown = ehci_hcd_xilinx_of_shutdown,
|
D | ohci-omap3.c | 88 .shutdown = ohci_shutdown, 205 * ohci_hcd_omap3_remove - shutdown processing for OHCI HCDs 229 if (hcd->driver->shutdown) in ohci_hcd_omap3_shutdown() 230 hcd->driver->shutdown(hcd); in ohci_hcd_omap3_shutdown() 236 .shutdown = ohci_hcd_omap3_shutdown,
|
D | ehci-sh.c | 67 .shutdown = ehci_shutdown, 229 if (hcd->driver->shutdown) in ehci_hcd_sh_shutdown() 230 hcd->driver->shutdown(hcd); in ehci_hcd_sh_shutdown() 236 .shutdown = ehci_hcd_sh_shutdown,
|
D | ehci-grlib.c | 75 .shutdown = ehci_shutdown, 216 if (hcd->driver->shutdown) in ehci_hcd_grlib_shutdown() 217 hcd->driver->shutdown(hcd); in ehci_hcd_grlib_shutdown() 236 .shutdown = ehci_hcd_grlib_shutdown,
|
/linux-3.3/arch/arm/mach-shmobile/ |
D | hotplug.c | 27 * here we need wait for shutdown code in platform_cpu_die() to in platform_cpu_kill() 42 /* hardware shutdown code running on the CPU that is being offlined */ in platform_cpu_die() 46 /* notify platform_cpu_kill() that hardware shutdown is finished */ in platform_cpu_die() 67 * we don't allow CPU 0 to be shutdown (it is still too special in platform_cpu_disable()
|
/linux-3.3/Documentation/sound/alsa/soc/ |
D | pops_clicks.txt | 22 shutdown and follows some basic rules:- 26 Shutdown Order :- Digital Mute --> Output PGA --> Mixers --> DAC 38 startup or shutdown. 42 Shutdown Order - ADC --> Mixers --> Input PGA
|
/linux-3.3/drivers/xen/ |
D | manage.c | 2 * Handle extern requests for shutdown, reboot and sysrq 36 /* Ignore multiple shutdown requests. */ 222 str = (char *)xenbus_read(xbt, "control", "shutdown", NULL); in shutdown_handler() 236 xenbus_write(xbt, "control", "shutdown", ""); in shutdown_handler() 247 printk(KERN_INFO "Ignoring shutdown request: %s\n", str); in shutdown_handler() 291 .node = "control/shutdown", 301 printk(KERN_ERR "Failed to set shutdown watcher\n"); in setup_shutdown_watcher()
|
/linux-3.3/sound/soc/ |
D | soc-pcm.c | 225 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown) in soc_pcm_open() 226 rtd->dai_link->ops->shutdown(substream); in soc_pcm_open() 229 if (codec_dai->driver->ops->shutdown) in soc_pcm_open() 230 codec_dai->driver->ops->shutdown(substream, codec_dai); in soc_pcm_open() 237 if (cpu_dai->driver->ops->shutdown) in soc_pcm_open() 238 cpu_dai->driver->ops->shutdown(substream, cpu_dai); in soc_pcm_open() 281 * shutdown. 313 * shutdown, for example from stopping clocks. in soc_pcm_close() 318 if (cpu_dai->driver->ops->shutdown) in soc_pcm_close() 319 cpu_dai->driver->ops->shutdown(substream, cpu_dai); in soc_pcm_close() [all …]
|
/linux-3.3/arch/arm/mach-imx/ |
D | hotplug.c | 23 * platform-specific code to shutdown a CPU 34 panic("cpu %d unexpectedly exit from shutdown\n", cpu); in platform_cpu_die() 40 * we don't allow CPU 0 to be shutdown (it is still too special in platform_cpu_disable()
|
/linux-3.3/drivers/base/ |
D | syscore.c | 111 * syscore_shutdown - Execute all the registered system core shutdown callbacks. 120 if (ops->shutdown) { in syscore_shutdown() 122 pr_info("PM: Calling %pF\n", ops->shutdown); in syscore_shutdown() 123 ops->shutdown(); in syscore_shutdown()
|
/linux-3.3/arch/arm/mach-highbank/ |
D | hotplug.c | 33 * platform-specific code to shutdown a CPU 46 panic("highbank: cpu %d unexpectedly exit from shutdown\n", cpu); in platform_cpu_die() 53 * or a proper shutdown or hibernate should be used. in platform_cpu_disable()
|
/linux-3.3/arch/sh/include/mach-landisk/mach/ |
D | iodata_landisk.h | 19 #define PA_SHUTDOWN 0xb0000003 /* Shutdown Control Register */ 22 /* 2003.10.31 I-O DATA NSD NWG add. for shutdown port clear */ 23 #define PA_PWRINT_CLR 0xb0000006 /* Shutdown Interrupt clear Register */
|
/linux-3.3/arch/arm/mach-omap2/ |
D | omap-hotplug.c | 33 * platform-specific code to shutdown a CPU 44 * we're ready for shutdown now, so do it in platform_cpu_die() 68 * we don't allow CPU 0 to be shutdown (it is still too special in platform_cpu_disable()
|
/linux-3.3/drivers/media/video/cx23885/ |
D | cx23885-input.c | 110 params.shutdown = atomic_read(&dev->ir_input_stopping); in cx23885_input_rx_work_handler() 121 params.shutdown = atomic_read(&dev->ir_input_stopping); in cx23885_input_rx_work_handler() 148 params.shutdown = false; in cx23885_input_ir_start() 173 params.shutdown = false; in cx23885_input_ir_start() 221 * It is shutdown this way in order to mitigate a race with in cx23885_input_ir_stop() 227 while (params.shutdown == false) { in cx23885_input_ir_stop() 230 params.shutdown = true; in cx23885_input_ir_stop()
|
/linux-3.3/arch/arm/mach-msm/ |
D | hotplug.c | 66 * platform-specific code to shutdown a CPU 73 * we're ready for shutdown now, so do it in platform_cpu_die() 88 * we don't allow CPU 0 to be shutdown (it is still too special in platform_cpu_disable()
|
/linux-3.3/drivers/s390/char/ |
D | sclp_quiesce.c | 27 /* Shutdown handler. Signal completion of shutdown by loading special PSW. */ 39 /* Handler for quiesce event. Start shutdown procedure. */
|
/linux-3.3/fs/ocfs2/cluster/ |
D | tcp_internal.h | 113 * connect attempt fails and so can be self-arming. shutdown is 141 * shutdown removes the callbacks and then flushes the work queue */ 144 /* shutdown work is triggered in two ways. the simple way is 150 * ends up triggering the shutdown work again, though nothing 153 * on the work queue so that the shutdown work doesn't remove the
|
/linux-3.3/virt/kvm/ |
D | eventfd.c | 55 /* Used for setup/shutdown */ 59 struct work_struct shutdown; member 80 struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown); in irqfd_shutdown() 122 queue_work(irqfd_cleanup_wq, &irqfd->shutdown); in irqfd_deactivate() 218 INIT_WORK(&irqfd->shutdown, irqfd_shutdown); in kvm_irqfd_assign() 298 * shutdown any irqfd's that match fd+gsi 331 * Block until we know all outstanding shutdown jobs have completed in kvm_irqfd_deassign() 350 * This function is called as the kvm VM fd is being released. Shutdown all 366 * Block until we know all outstanding shutdown jobs have completed in kvm_irqfd_release() 393 * create a host-wide workqueue for issuing deferred shutdown requests
|
/linux-3.3/drivers/oprofile/ |
D | oprof.c | 81 if (oprofile_ops.shutdown) in oprofile_setup() 82 oprofile_ops.shutdown(); in oprofile_setup() 220 if (oprofile_ops.shutdown) in oprofile_shutdown() 221 oprofile_ops.shutdown(); in oprofile_shutdown()
|
/linux-3.3/Documentation/power/ |
D | basic-pm-debugging.txt | 16 resuming the system.] Moreover, hibernating in the "reboot" and "shutdown" 27 with broken BIOSes. In such cases the "shutdown" mode of hibernation might 30 # echo shutdown > /sys/power/disk 36 If neither "platform" nor "shutdown" hibernation mode works, you will need to 127 of hibernation is not likely to work. You can try the "shutdown" mode, but that 150 "reboot", "shutdown" and "platform" modes. If that does not work, there
|
/linux-3.3/arch/x86/kernel/ |
D | tboot.c | 53 /* timeout for APs (in secs) to enter wait-for-SIPI state during shutdown */ 165 /* Create identity map for tboot shutdown code. */ in tboot_create_trampoline() 213 /* S3 shutdown requested, but S3 not supported by the kernel... */ in tboot_setup_sleep() 222 void (*shutdown)(void); in tboot_shutdown() local 229 * return and let the normal shutdown happen; this should only be in tboot_shutdown() 244 shutdown = (void(*)(void))(unsigned long)tboot->shutdown_entry; in tboot_shutdown() 245 shutdown(); in tboot_shutdown()
|