Home
last modified time | relevance | path

Searched refs:t (Results 6651 – 6675 of 8709) sorted by relevance

1...<<261262263264265266267268269270>>...349

/openbmc/linux/fs/nilfs2/
H A Dsegment.c2477 static void nilfs_construction_timeout(struct timer_list *t) in nilfs_construction_timeout() argument
2479 struct nilfs_sc_info *sci = from_timer(sci, t, sc_timer); in nilfs_construction_timeout()
2695 struct task_struct *t; in nilfs_segctor_start_thread() local
2697 t = kthread_run(nilfs_segctor_thread, sci, "segctord"); in nilfs_segctor_start_thread()
2698 if (IS_ERR(t)) { in nilfs_segctor_start_thread()
2699 int err = PTR_ERR(t); in nilfs_segctor_start_thread()
/openbmc/openbmc/poky/meta/recipes-core/systemd/
H A Dsystemd_255.6.bb18 # that we don't build both udev and systemd in world builds.
29 file://0002-binfmt-Don-t-install-dependency-links-at-install-tim.patch \
39 file://0004-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch \
42 file://0007-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch \
124 # systemd won't fail but the library-related feature will be skipped with a warning.
321 # then don't use a tmpfs for /tmp
/openbmc/qemu/migration/
H A Dsavevm.c1149 uint16_t t; in qemu_savevm_send_postcopy_ram_discard() local
1161 for (t = 0; t < len; t++) { in qemu_savevm_send_postcopy_ram_discard()
1162 stq_be_p(buf + tmplen, start_list[t]); in qemu_savevm_send_postcopy_ram_discard()
1164 stq_be_p(buf + tmplen, length_list[t]); in qemu_savevm_send_postcopy_ram_discard()
/openbmc/qemu/tcg/sparc64/
H A Dtcg-target.c.inc761 /* If we don't need to load a constant into a register, we can
765 TCGReg t = c1;
767 c2 = t;
866 /* Note that ADDXC doesn't accept immediates. */
1073 /* We don't support unaligned accesses. */
1630 * Only probe for the platform and capabilities if we haven't already
/openbmc/u-boot/drivers/serial/
H A DKconfig276 The DCC port can be used for very early debugging and doesn't require
630 The operation of the console is controlled by the -t command-line
636 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
637 -t raw Raw mode, Ctrl-C is processed by U-Boot
638 -t cooked Cooked mode, Ctrl-C terminates
/openbmc/linux/Documentation/process/
H A Dadding-syscalls.rst30 - However, operations that don't map to
62 (The syscall table is littered with historical examples where this wasn't done,
110 should use a file descriptor as the handle for that object -- don't invent a
255 master syscall tables. Assuming your new system call isn't special in some
433 doesn't include ``arch/x86/entry/entry_64.S`` implementation (because UML
/openbmc/linux/net/atm/
H A Dlec.c1222 static void lec_arp_expire_arp(struct timer_list *t);
1549 static void lec_arp_expire_arp(struct timer_list *t) in lec_arp_expire_arp() argument
1553 entry = from_timer(entry, t, timer); in lec_arp_expire_arp()
1571 static void lec_arp_expire_vcc(struct timer_list *t) in lec_arp_expire_vcc() argument
1574 struct lec_arp_table *to_remove = from_timer(to_remove, t, timer); in lec_arp_expire_vcc()
/openbmc/linux/net/ipv4/
H A DKconfig23 The answer to this question won't directly affect the kernel:
38 for their source address doesn't match the network interface they're
178 want). Most people won't need this and can say N.
229 likely run the program mrouted. If you haven't heard about it, you
230 don't need it.
/openbmc/linux/Documentation/driver-api/
H A Dvfio.rst183 /* Doesn't support the IOMMU driver we want. */
287 VFIO device cdev doesn't rely on VFIO group/container/iommu drivers.
328 An opened cdev_fd doesn't give the user any permission of accessing
593 /* Waiting for pending PCI transactions to be completed and don't
683 (iommu=group_mf). The latter we can't prevent, but the IOMMU should
/openbmc/linux/sound/soc/codecs/
H A Dwm8996.c2557 const char **t; in wm8996_retune_mobile_pdata() local
2576 t = krealloc(wm8996->retune_mobile_texts, in wm8996_retune_mobile_pdata()
2580 if (t == NULL) in wm8996_retune_mobile_pdata()
2584 t[wm8996->num_retune_mobile_texts] = in wm8996_retune_mobile_pdata()
2589 wm8996->retune_mobile_texts = t; in wm8996_retune_mobile_pdata()
/openbmc/qemu/target/ppc/translate/
H A Dfixedpoint-impl.c.inc1016 TCGv_i32 t = tcg_temp_new_i32();
1018 tcg_gen_trunc_tl_i32(t, cpu_gpr[a->rs]);
1019 helper(t, t, 32);
1020 tcg_gen_extu_i32_tl(cpu_gpr[a->ra], t);
/openbmc/linux/net/sched/
H A Dsch_api.c2292 int t, s_t; in tc_dump_tclass() local
2301 t = 0; in tc_dump_tclass()
2304 skb, tcm, cb, &t, s_t, true) < 0) in tc_dump_tclass()
2310 skb, tcm, cb, &t, s_t, false) < 0) in tc_dump_tclass()
2314 cb->args[0] = t; in tc_dump_tclass()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-fs-f2fs336 file. If it exceeds this, F2FS doesn't guarantee its pinning
453 whereas, if it has a certain bytes value, f2fs won't submit a
522 that when the compressed blocks are deleted, this count doesn't
530 that when the compressed blocks are deleted, this count doesn't
539 doesn't decrease. If you write "0" here, you can initialize
/openbmc/linux/drivers/usb/gadget/
H A Dcomposite.c112 next_desc(struct usb_descriptor_header **t, u8 desc_type) in next_desc() argument
114 for (; *t; t++) { in next_desc()
115 if ((*t)->bDescriptorType == desc_type) in next_desc()
116 return t; in next_desc()
/openbmc/linux/Documentation/driver-api/media/drivers/
H A Ddvb-usb.rst279 (t|s)zap, mplayer and dvbscan to test the basics. VDR-xine provides the
285 - Don't remove the USB device while running an DVB application, your system
/openbmc/linux/drivers/greybus/
H A Doperation.c296 static void gb_operation_timeout(struct timer_list *t) in gb_operation_timeout() argument
298 struct gb_operation *operation = from_timer(operation, t, timer); in gb_operation_timeout()
/openbmc/linux/Documentation/networking/
H A Dkcm.rst196 work on a request and won't be able to service new messages for a
252 since this doesn't allow for affinities to be established. Balancing
/openbmc/qemu/docs/
H A Dqcow2-cache.txt150 refcount cache size won't have any measurable effect in performance
211 after which all the cache entries that haven't been accessed during the
/openbmc/linux/Documentation/userspace-api/media/mediactl/
H A Drequest-api.rst122 file descriptor is closed, then it won't be freed until the driver completed
205 Once we don't need the request anymore, we can either recycle it for reuse with
/openbmc/linux/tools/memory-model/Documentation/
H A Dcontrol-dependencies.txt55 So don't leave out either the READ_ONCE() or the WRITE_ONCE().
144 is gone, and the barrier won't bring it back. Therefore, if you need
/openbmc/linux/drivers/scsi/aic94xx/
H A Daic94xx_scb.c863 void asd_ascb_timedout(struct timer_list *t) in asd_ascb_timedout() argument
865 struct asd_ascb *ascb = from_timer(ascb, t, timer); in asd_ascb_timedout()
/openbmc/linux/drivers/infiniband/sw/rdmavt/
H A Dmr.c442 static int rvt_check_refs(struct rvt_mregion *mr, const char *t) in rvt_check_refs() argument
458 t, mr, mr->pd, mr->lkey, in rvt_check_refs()
/openbmc/linux/drivers/media/usb/cx231xx/
H A Dcx231xx.h928 int cx231xx_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t);
929 int cx231xx_s_tuner(struct file *file, void *priv, const struct v4l2_tuner *t);
/openbmc/openbmc/meta-amd/meta-ethanolx/conf/templates/default/
H A Dlocal.conf.sample7 # but new users likely won't need any of them initially.
235 # this doesn't mean anything to you.
/openbmc/docs/designs/
H A Dbios-bmc-smm-error-logging.md25 are only a few that don't require a handshake and lets the data persist in
105 critical information that we don't want to lose, and should be prioritized over

1...<<261262263264265266267268269270>>...349