| /linux/mm/ |
| A D | oom_kill.c | 263 oc->totalpages = mem_cgroup_get_max(oc->memcg) ?: 1; in constrained_alloc() 320 if (!is_memcg_oom(oc) && !oom_cpuset_eligible(task, oc)) in oom_evaluate_task() 349 if (oc->chosen) in oom_evaluate_task() 372 mem_cgroup_scan_tasks(oc->memcg, oom_evaluate_task, oc); in select_bad_process() 393 if (!is_memcg_oom(oc) && !oom_cpuset_eligible(p, oc)) in dump_task() 432 mem_cgroup_scan_tasks(oc->memcg, dump_task, oc); in dump_tasks() 458 current->comm, oc->gfp_mask, &oc->gfp_mask, oc->order, in dump_header() 1083 if (oc->gfp_mask && !(oc->gfp_mask & __GFP_FS) && !is_memcg_oom(oc)) in out_of_memory() 1090 oc->constraint = constrained_alloc(oc); in out_of_memory() 1115 if (!is_sysrq_oom(oc) && !is_memcg_oom(oc)) in out_of_memory() [all …]
|
| /linux/arch/arm/mach-omap2/ |
| A D | display.c | 378 struct omap_hwmod_opt_clk *oc; in omap_dss_reset() local 387 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) in omap_dss_reset() 388 clk_prepare_enable(oc->_clk); in omap_dss_reset() 413 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) in omap_dss_reset() 414 clk_disable_unprepare(oc->_clk); in omap_dss_reset()
|
| A D | omap_hwmod.c | 917 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) { in _init_opt_clks() 918 c = clk_get(NULL, oc->clk); in _init_opt_clks() 921 oh->name, oc->clk); in _init_opt_clks() 925 oc->_clk = c; in _init_opt_clks() 934 clk_prepare(oc->_clk); in _init_opt_clks() 947 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) in _enable_optional_clocks() 948 if (oc->_clk) { in _enable_optional_clocks() 951 clk_enable(oc->_clk); in _enable_optional_clocks() 962 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) in _disable_optional_clocks() 963 if (oc->_clk) { in _disable_optional_clocks() [all …]
|
| /linux/drivers/net/ethernet/brocade/bna/ |
| A D | bfa_cs.h | 39 #define bfa_fsm_state_decl(oc, st, otype, etype) \ argument 40 static void oc ## _sm_ ## st(otype * fsm, etype event); \ 41 static void oc ## _sm_ ## st ## _entry(otype * fsm)
|
| /linux/drivers/scsi/bfa/ |
| A D | bfa_cs.h | 187 #define bfa_sm_state_decl(oc, st, otype, etype) \ argument 188 static void oc ## _sm_ ## st(otype * fsm, etype event) 216 #define bfa_fsm_state_decl(oc, st, otype, etype) \ argument 217 static void oc ## _sm_ ## st(otype * fsm, etype event); \ 218 static void oc ## _sm_ ## st ## _entry(otype * fsm)
|
| /linux/arch/arm/boot/dts/ |
| A D | stih410-pinctrl.dtsi | 15 usb-oc-detect = <&pio35 0 ALT1 IN>; 24 usb-oc-detect = <&pio35 2 ALT1 IN>;
|
| A D | at91-gatwick.dts | 116 /delete-property/atmel,oc-gpio;
|
| A D | rk3288-vmarc-som.dtsi | 312 usb1_en_oc: usb1-en-oc { 318 usb0_en_oc: usb0-en-oc {
|
| A D | at91-wb45n.dtsi | 130 atmel,oc-gpio = <&pioB 13 GPIO_ACTIVE_LOW>;
|
| A D | kirkwood-openblocks_a6.dts | 81 pmx_usb_oc: pmx-usb-oc {
|
| /linux/Documentation/devicetree/bindings/usb/ |
| A D | pxa-usb.txt | 18 - "marvell,no-oc-protection" - disable over-current protection. 19 - "marvell,oc-mode-perport" - enable per-port over-current protection.
|
| /linux/drivers/block/drbd/ |
| A D | drbd_state.c | 977 if (oc == nc) in is_valid_conn_transition() 981 if (oc == C_STANDALONE && nc == C_DISCONNECTING) in is_valid_conn_transition() 985 if (oc == C_STANDALONE && nc != C_UNCONNECTED) in is_valid_conn_transition() 990 if (oc < C_WF_REPORT_PARAMS && nc >= C_CONNECTED) in is_valid_conn_transition() 994 if (oc >= C_TIMEOUT && oc <= C_TEAR_DOWN && nc != C_UNCONNECTED && nc != C_DISCONNECTING) in is_valid_conn_transition() 998 if (oc == C_DISCONNECTING && nc != C_STANDALONE) in is_valid_conn_transition() 2030 enum drbd_conns oc; member 2043 enum drbd_conns oc = acscw->oc; in w_after_conn_state_ch() local 2290 enum drbd_conns oc = connection->cstate; in _conn_request_state() local 2296 rv = is_valid_conn_transition(oc, val.conn); in _conn_request_state() [all …]
|
| /linux/tools/perf/util/ |
| A D | stat-shadow.c | 373 struct evsel *counter, *leader, **metric_events, *oc; in perf_stat__collect_metric_expr() local 416 for_each_group_member (oc, leader) { in perf_stat__collect_metric_expr() 417 if (!strcasecmp(oc->name, in perf_stat__collect_metric_expr() 419 !oc->collect_stat) { in perf_stat__collect_metric_expr() 427 oc = perf_stat__find_event(evsel_list, in perf_stat__collect_metric_expr() 430 if (!oc) { in perf_stat__collect_metric_expr() 453 metric_events[i++] = oc; in perf_stat__collect_metric_expr() 454 oc->collect_stat = true; in perf_stat__collect_metric_expr()
|
| /linux/arch/powerpc/boot/dts/ |
| A D | eiger.dts | 326 has-inverted-stacr-oc; 356 has-inverted-stacr-oc; 386 has-inverted-stacr-oc; 416 has-inverted-stacr-oc;
|
| A D | klondike.dts | 172 has-inverted-stacr-oc; 202 has-inverted-stacr-oc;
|
| A D | arches.dts | 277 has-inverted-stacr-oc; 306 has-inverted-stacr-oc; 335 has-inverted-stacr-oc;
|
| A D | glacier.dts | 363 has-inverted-stacr-oc; 393 has-inverted-stacr-oc; 423 has-inverted-stacr-oc; 453 has-inverted-stacr-oc;
|
| A D | obs600.dts | 270 has-inverted-stacr-oc; 300 has-inverted-stacr-oc;
|
| /linux/arch/s390/include/asm/ |
| A D | chsc.h | 57 u8 oc; member
|
| A D | eadm.h | 43 u8 oc:4; member
|
| A D | pci_clp.h | 174 u8 oc; /* operation controls */ member
|
| /linux/sound/soc/codecs/ |
| A D | ak4613.c | 101 u8 oc; member 437 snd_soc_component_update_bits(component, OCTRL, OCTRL_MASK, priv->oc); in ak4613_dai_hw_params() 642 priv->oc |= 1 << i; in ak4613_parse_of()
|
| /linux/include/linux/ |
| A D | oom.h | 114 extern bool out_of_memory(struct oom_control *oc);
|
| /linux/drivers/thermal/tegra/ |
| A D | soctherm.c | 1911 struct soctherm_oc_cfg *oc = &ts->throt_cfgs[throt].oc_cfg; in soctherm_oc_cfg_program() local 1913 if (oc->mode == OC_THROTTLE_MODE_DISABLED) in soctherm_oc_cfg_program() 1917 r = REG_SET_MASK(r, OC1_CFG_THROTTLE_MODE_MASK, oc->mode); in soctherm_oc_cfg_program() 1918 r = REG_SET_MASK(r, OC1_CFG_ALARM_POLARITY_MASK, oc->active_low); in soctherm_oc_cfg_program() 1921 writel(oc->throt_period, ts->regs + ALARM_THROTTLE_PERIOD(throt)); in soctherm_oc_cfg_program() 1922 writel(oc->alarm_cnt_thresh, ts->regs + ALARM_CNT_THRESHOLD(throt)); in soctherm_oc_cfg_program() 1923 writel(oc->alarm_filter, ts->regs + ALARM_FILTER(throt)); in soctherm_oc_cfg_program() 1924 soctherm_oc_intr_enable(ts, throt, oc->intr_en); in soctherm_oc_cfg_program()
|
| /linux/Documentation/devicetree/bindings/regulator/ |
| A D | richtek,rt6245-regulator.yaml | 34 richtek,oc-level-select:
|