/openbmc/linux/kernel/ |
H A D | delayacct.c | 51 struct ctl_table t; in sysctl_delayacct() local 57 t = *table; in sysctl_delayacct() 58 t.data = &state; in sysctl_delayacct() 59 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos); in sysctl_delayacct()
|
H A D | umh.c | 501 struct ctl_table t; in proc_cap_handler() local 522 t = *table; in proc_cap_handler() 523 t.data = &cap_array; in proc_cap_handler() 529 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos); in proc_cap_handler()
|
H A D | tracepoint.c | 760 struct task_struct *p, *t; in syscall_regfunc() local 764 for_each_process_thread(p, t) { in syscall_regfunc() 765 set_task_syscall_work(t, SYSCALL_TRACEPOINT); in syscall_regfunc() 776 struct task_struct *p, *t; in syscall_unregfunc() local 781 for_each_process_thread(p, t) { in syscall_unregfunc() 782 clear_task_syscall_work(t, SYSCALL_TRACEPOINT); in syscall_unregfunc()
|
/openbmc/linux/drivers/thermal/broadcom/ |
H A D | brcmstb_thermal.c | 157 long t; in brcmstb_get_temp() local 166 t = avs_tmon_code_to_temp(priv, val); in brcmstb_get_temp() 167 if (t < 0) in brcmstb_get_temp() 170 *temp = t; in brcmstb_get_temp()
|
/openbmc/linux/drivers/spi/ |
H A D | spi-loongson-core.c | 78 struct spi_device *spi, struct spi_transfer *t) in loongson_spi_update_state() argument 80 if (t && loongson_spi->hz != t->speed_hz) in loongson_spi_update_state() 81 loongson_spi_set_clk(loongson_spi, t->speed_hz); in loongson_spi_update_state()
|
/openbmc/linux/drivers/net/wireless/ath/wil6210/ |
H A D | netdev.c | 228 static void wil_connect_timer_fn(struct timer_list *t) in wil_connect_timer_fn() argument 230 struct wil6210_vif *vif = from_timer(vif, t, connect_timer); in wil_connect_timer_fn() 244 static void wil_scan_timer_fn(struct timer_list *t) in wil_scan_timer_fn() argument 246 struct wil6210_vif *vif = from_timer(vif, t, scan_timer); in wil_scan_timer_fn() 254 static void wil_p2p_discovery_timer_fn(struct timer_list *t) in wil_p2p_discovery_timer_fn() argument 256 struct wil6210_vif *vif = from_timer(vif, t, p2p.discovery_timer); in wil_p2p_discovery_timer_fn()
|
/openbmc/linux/tools/testing/selftests/tc-testing/ |
H A D | tdc.py | 72 for t in testlist: 74 if 'requires' in t['plugins']: 75 if isinstance(t['plugins']['requires'], list): 76 reqs.extend(t['plugins']['requires']) 78 reqs.append(t['plugins']['requires']) 703 for t in alltests: 704 if 'filename' in t: 705 if t['filename'] == f: 706 del t['filename'] 707 testlist.append(t)
|
/openbmc/linux/sound/core/ |
H A D | pcm_lib.c | 818 struct snd_interval t; in snd_interval_ratnum() local 899 t.integer = 0; in snd_interval_ratnum() 900 err = snd_interval_refine(i, &t); in snd_interval_ratnum() 936 struct snd_interval t; in snd_interval_ratden() local 1002 t.integer = 0; in snd_interval_ratden() 1003 err = snd_interval_refine(i, &t); in snd_interval_ratden() 1268 struct snd_interval t; in snd_pcm_hw_constraint_minmax() local 1269 t.min = min; in snd_pcm_hw_constraint_minmax() 1270 t.max = max; in snd_pcm_hw_constraint_minmax() 1271 t.openmin = t.openmax = 0; in snd_pcm_hw_constraint_minmax() [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | netdev-features.rst | 87 care must be taken as the change won't affect already configured VLANs. 92 should not be altered unless some error condition happens that can't 144 NETIF_F_LLTX is meant to be used by drivers that don't need locking at all, 148 own locking, don't use it for new (hardware) drivers. 155 Don't use it in drivers. 159 NETIF_F_VLAN_CHALLENGED should be set for devices which can't cope with VLAN 160 headers. Some drivers set this because the cards can't handle the bigger MTU.
|
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/dss/ |
H A D | dpi.c | 327 struct omap_video_timings *t = &dpi->timings; in dpi_set_mode() local 334 r = dpi_set_dsi_clk(dpi, mgr->id, t->pixelclock, &fck, in dpi_set_mode() 337 r = dpi_set_dispc_clk(dpi, t->pixelclock, &fck, in dpi_set_mode() 344 if (pck != t->pixelclock) { in dpi_set_mode() 346 t->pixelclock, pck); in dpi_set_mode() 348 t->pixelclock = pck; in dpi_set_mode() 351 dss_mgr_set_timings(mgr, t); in dpi_set_mode()
|
/openbmc/linux/Documentation/translations/zh_TW/process/ |
H A D | coding-style.rst | 558 (indent-tabs-mode . t) 559 (show-trailing-whitespace . t) 713 不要用不規範的單詞比如 ``dont``,而要用 ``do not`` 或者 ``don't`` 。保證這些信 832 #define sizeof_field(t, f) (sizeof(((t*)0)->f)) 887 除了最後一條指令外,在每個指令結尾加上 \n\t,讓彙編輸出時可以正確地縮進下一條 892 asm ("magic %reg1, #42\n\t"
|
/openbmc/linux/mm/ |
H A D | util.c | 301 struct task_struct * __maybe_unused t = current; in vma_is_stack_for_current() local 303 return (vma->vm_start <= KSTK_ESP(t) && vma->vm_end >= KSTK_ESP(t)); in vma_is_stack_for_current() 839 struct ctl_table t; in overcommit_policy_handler() local 855 t = *table; in overcommit_policy_handler() 856 t.data = &new_policy; in overcommit_policy_handler() 857 ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos); in overcommit_policy_handler()
|
/openbmc/openbmc/meta-arm/ |
H A D | .gitlab-ci.yml | 4 # These are needed as the k8s executor doesn't respect the container 59 # Don't run MR pipelines 62 # Don't run pipelines for tags 65 # Don't run if BUILD_ENABLE_REGEX is set, but the job doesn't match the regex 98 # Only generate if doesn't already exist, to allow feature branches to drop one in. 259 …"$CI_PROJECT_DIR/scripts/machine-summary.py -t report -o $CI_PROJECT_DIR/update-report $($CI_PROJE…
|
/openbmc/webui-vue/docs/guide/components/table/ |
H A D | index.md | 39 :empty-text="$t('global.table.emptyMessage')" 61 label: this.$t('table.name') //translated label 65 label: this.$t('table.age') //translated label 69 label: this.$t('table.color') // translated label 358 title: this.$t('global.action.edit'), 362 title: this.$t('global.action.delete'), 426 label: this.$t('table.status'), 543 label: this.$t('global.action.edit') 547 label: this.$t('global.action.delete') 578 :label="$t('global.table.itemsPerPage')" [all …]
|
/openbmc/linux/drivers/media/pci/cx88/ |
H A D | cx88-blackbird.c | 976 struct v4l2_tuner *t) in vidioc_g_tuner() argument 984 if (t->index != 0) in vidioc_g_tuner() 987 strscpy(t->name, "Television", sizeof(t->name)); in vidioc_g_tuner() 988 t->capability = V4L2_TUNER_CAP_NORM; in vidioc_g_tuner() 989 t->rangehigh = 0xffffffffUL; in vidioc_g_tuner() 990 call_all(core, tuner, g_tuner, t); in vidioc_g_tuner() 992 cx88_get_stereo(core, t); in vidioc_g_tuner() 994 t->signal = (reg & (1 << 5)) ? 0xffff : 0x0000; in vidioc_g_tuner() 999 const struct v4l2_tuner *t) in vidioc_s_tuner() argument 1006 if (t->index != 0) in vidioc_s_tuner() [all …]
|
/openbmc/linux/Documentation/admin-guide/device-mapper/ |
H A D | dm-integrity.rst | 32 is faster than the journal mode, because we don't have to write the data 39 target can't be loaded. 68 dm-integrity won't read of write these sectors 79 and integrity tag doesn't match. 88 regions where data and metadata don't match. This mode can 111 Don't interleave the data and metadata on the device. Use a 130 When this argument is used, the dm-integrity target won't accept 150 attacker can't read the journal. You can use a block cipher here 196 - the section number is mixed to the mac, so that an attacker can't 200 that the attacker can't detect that two disks have the same hmac [all …]
|
/openbmc/linux/Documentation/driver-api/media/drivers/ |
H A D | zoran.rst | 331 Load zr36067.o. If it can't autodetect your card, use the card=X insmod 340 One thing to keep in mind is that this doesn't load zr36067.o itself yet. It 341 just automates loading. If you start using xawtv, the device won't load on 345 one of your startup scripts (normally rc.local) if you don't use X. Both 348 What mainboard should I use (or why doesn't my card work) 362 - Forget it. Pointless. Doesn't work. 383 In general, people on the user mailinglist won't give you much of a chance 387 You'll noticed the DC10+/DC30+ aren't mentioned anywhere in the overview. 474 I woke up, and can't go to sleep again. I'll kill some time explaining why 475 this doesn't look strange to me. [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
H A D | phy.c | 1150 if (t == 0) { in _rtl8723e_phy_iq_calibrate() 1159 if (t == 0) { in _rtl8723e_phy_iq_calibrate() 1167 if (t == 0) { in _rtl8723e_phy_iq_calibrate() 1201 result[t][0] = (rtl_get_bbreg(hw, 0xe94, in _rtl8723e_phy_iq_calibrate() 1204 result[t][1] = in _rtl8723e_phy_iq_calibrate() 1215 result[t][4] = (rtl_get_bbreg(hw, in _rtl8723e_phy_iq_calibrate() 1219 result[t][5] = in _rtl8723e_phy_iq_calibrate() 1222 result[t][6] = in _rtl8723e_phy_iq_calibrate() 1225 result[t][7] = in _rtl8723e_phy_iq_calibrate() 1230 result[t][4] = (rtl_get_bbreg(hw, in _rtl8723e_phy_iq_calibrate() [all …]
|
/openbmc/linux/drivers/input/keyboard/ |
H A D | jornada680_kbd.c | 119 }, *t = matrix_switch; in jornada_scan_keyb() local 148 __raw_writeb(*t++, PDDR); in jornada_scan_keyb() 149 __raw_writeb(*t++, PEDR); in jornada_scan_keyb()
|
/openbmc/linux/arch/sh/kernel/ |
H A D | hw_breakpoint.c | 265 struct thread_struct *t = &tsk->thread; in flush_ptrace_hw_breakpoint() local 268 unregister_hw_breakpoint(t->ptrace_bps[i]); in flush_ptrace_hw_breakpoint() 269 t->ptrace_bps[i] = NULL; in flush_ptrace_hw_breakpoint()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 177.out | 4 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=134217728 7 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.base backi…
|
/openbmc/linux/net/wireless/ |
H A D | lib80211.c | 46 static void lib80211_crypt_deinit_handler(struct timer_list *t); 118 static void lib80211_crypt_deinit_handler(struct timer_list *t) in lib80211_crypt_deinit_handler() argument 120 struct lib80211_crypt_info *info = from_timer(info, t, in lib80211_crypt_deinit_handler()
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-graphics/cogl/cogl-1.0/ |
H A D | 0001-configure.ac-don-t-require-eglmesaext.h.patch | 4 Subject: [PATCH] configure.ac: don't require eglmesaext.h 58 +dnl Set the usual include guard define and, if the EGL implementation doesn't 59 +dnl use that guard fall back to USE_OZONE and EGL_NO_X11 platforms which don't
|
/openbmc/linux/drivers/media/usb/dvb-usb-v2/ |
H A D | dvb_usb.h | 54 #define dvb_usb_dbg_usb_control_msg(udev, r, t, v, i, b, l) { \ argument 56 if (t == (USB_TYPE_VENDOR | USB_DIR_OUT)) \ 61 "%s %*ph\n", __func__, t, r, v & 0xff, v >> 8, \
|
/openbmc/linux/Documentation/watchdog/ |
H A D | pcwd-watchdog.rst | 13 the WDT card does, only it doesn't require an IRQ to run. Furthermore, 19 signals to it so it doesn't reset your computer ... at least during 28 a "watchdog -e -t 1" immediately after the end of an fsck. (Remember
|