Home
last modified time | relevance | path

Searched full:shutdown (Results 1 – 25 of 1311) sorted by relevance

12345678910>>...53

/linux-3.3/arch/powerpc/platforms/44x/
Dwarp.c115 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/
Dsm_statefuns.c177 * 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/
Dsched.h22 * 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/
Dip_vs_proto_sctp.c548 * 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/
Dehci-xilinx-of.c113 .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,
Dohci-omap3.c88 .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,
Dehci-sh.c67 .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,
Dehci-grlib.c75 .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/
Dhotplug.c27 * 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/
Dpops_clicks.txt22 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/
Dmanage.c2 * 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/
Dsoc-pcm.c225 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/
Dhotplug.c23 * 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/
Dsyscore.c111 * 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/
Dhotplug.c33 * 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/
Diodata_landisk.h19 #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/
Domap-hotplug.c33 * 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/
Dcx23885-input.c110 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/
Dhotplug.c66 * 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/
Dsclp_quiesce.c27 /* Shutdown handler. Signal completion of shutdown by loading special PSW. */
39 /* Handler for quiesce event. Start shutdown procedure. */
/linux-3.3/fs/ocfs2/cluster/
Dtcp_internal.h113 * 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/
Deventfd.c55 /* 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/
Doprof.c81 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/
Dbasic-pm-debugging.txt16 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/
Dtboot.c53 /* 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()

12345678910>>...53