Home
last modified time | relevance | path

Searched refs:fallback (Results 1 – 127 of 127) sorted by relevance

/linux-4.1.27/drivers/crypto/vmx/
Daes.c33 struct crypto_cipher *fallback; member
41 struct crypto_cipher *fallback; in p8_aes_init() local
49 fallback = crypto_alloc_cipher(alg, 0 ,CRYPTO_ALG_NEED_FALLBACK); in p8_aes_init()
50 if (IS_ERR(fallback)) { in p8_aes_init()
52 alg, PTR_ERR(fallback)); in p8_aes_init()
53 return PTR_ERR(fallback); in p8_aes_init()
56 crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback)); in p8_aes_init()
58 crypto_cipher_set_flags(fallback, in p8_aes_init()
60 ctx->fallback = fallback; in p8_aes_init()
69 if (ctx->fallback) { in p8_aes_exit()
[all …]
Daes_cbc.c34 struct crypto_blkcipher *fallback; member
42 struct crypto_blkcipher *fallback; in p8_aes_cbc_init() local
50 fallback = crypto_alloc_blkcipher(alg, 0 ,CRYPTO_ALG_NEED_FALLBACK); in p8_aes_cbc_init()
51 if (IS_ERR(fallback)) { in p8_aes_cbc_init()
53 alg, PTR_ERR(fallback)); in p8_aes_cbc_init()
54 return PTR_ERR(fallback); in p8_aes_cbc_init()
57 crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback)); in p8_aes_cbc_init()
59 crypto_blkcipher_set_flags(fallback, in p8_aes_cbc_init()
61 ctx->fallback = fallback; in p8_aes_cbc_init()
70 if (ctx->fallback) { in p8_aes_cbc_exit()
[all …]
Daes_ctr.c33 struct crypto_blkcipher *fallback; member
40 struct crypto_blkcipher *fallback; in p8_aes_ctr_init() local
48 fallback = crypto_alloc_blkcipher(alg, 0 ,CRYPTO_ALG_NEED_FALLBACK); in p8_aes_ctr_init()
49 if (IS_ERR(fallback)) { in p8_aes_ctr_init()
51 alg, PTR_ERR(fallback)); in p8_aes_ctr_init()
52 return PTR_ERR(fallback); in p8_aes_ctr_init()
55 crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback)); in p8_aes_ctr_init()
57 crypto_blkcipher_set_flags(fallback, in p8_aes_ctr_init()
59 ctx->fallback = fallback; in p8_aes_ctr_init()
68 if (ctx->fallback) { in p8_aes_ctr_exit()
[all …]
Dghash.c46 struct crypto_shash *fallback; member
59 struct crypto_shash *fallback; in p8_ghash_init_tfm() local
68 fallback = crypto_alloc_shash(alg, 0 ,CRYPTO_ALG_NEED_FALLBACK); in p8_ghash_init_tfm()
69 if (IS_ERR(fallback)) { in p8_ghash_init_tfm()
71 alg, PTR_ERR(fallback)); in p8_ghash_init_tfm()
72 return PTR_ERR(fallback); in p8_ghash_init_tfm()
75 crypto_tfm_alg_driver_name(crypto_shash_tfm(fallback))); in p8_ghash_init_tfm()
77 crypto_shash_set_flags(fallback, in p8_ghash_init_tfm()
79 ctx->fallback = fallback; in p8_ghash_init_tfm()
82 + crypto_shash_descsize(fallback); in p8_ghash_init_tfm()
[all …]
/linux-4.1.27/arch/mips/bcm47xx/
Dsprom.c47 const char *name, char *buf, int len, bool fallback) in get_nvram_var() argument
55 if (fallback && err == -ENOENT && prefix) { in get_nvram_var()
65 type *val, type allset, bool fallback) \
72 fallback); \
94 u16 *val_lo, u16 *val_hi, bool fallback) in NVRAM_READ_VAL()
100 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in NVRAM_READ_VAL()
115 bool fallback) in nvram_read_leddc() argument
121 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in nvram_read_leddc()
153 u8 val[6], bool fallback) in nvram_read_macaddr() argument
158 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in nvram_read_macaddr()
[all …]
/linux-4.1.27/drivers/crypto/
Dpadlock-sha.c29 struct shash_desc fallback; member
33 struct crypto_shash *fallback; member
41 dctx->fallback.tfm = ctx->fallback; in padlock_sha_init()
42 dctx->fallback.flags = desc->flags & CRYPTO_TFM_REQ_MAY_SLEEP; in padlock_sha_init()
43 return crypto_shash_init(&dctx->fallback); in padlock_sha_init()
51 dctx->fallback.flags = desc->flags & CRYPTO_TFM_REQ_MAY_SLEEP; in padlock_sha_update()
52 return crypto_shash_update(&dctx->fallback, data, length); in padlock_sha_update()
59 return crypto_shash_export(&dctx->fallback, out); in padlock_sha_export()
67 dctx->fallback.tfm = ctx->fallback; in padlock_sha_import()
68 dctx->fallback.flags = desc->flags & CRYPTO_TFM_REQ_MAY_SLEEP; in padlock_sha_import()
[all …]
Dgeode-aes.c138 op->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in geode_setkey_cip()
139 op->fallback.cip->base.crt_flags |= (tfm->crt_flags & CRYPTO_TFM_REQ_MASK); in geode_setkey_cip()
141 ret = crypto_cipher_setkey(op->fallback.cip, key, len); in geode_setkey_cip()
144 tfm->crt_flags |= (op->fallback.cip->base.crt_flags & CRYPTO_TFM_RES_MASK); in geode_setkey_cip()
171 op->fallback.blk->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in geode_setkey_blk()
172 op->fallback.blk->base.crt_flags |= (tfm->crt_flags & CRYPTO_TFM_REQ_MASK); in geode_setkey_blk()
174 ret = crypto_blkcipher_setkey(op->fallback.blk, key, len); in geode_setkey_blk()
177 tfm->crt_flags |= (op->fallback.blk->base.crt_flags & CRYPTO_TFM_RES_MASK); in geode_setkey_blk()
191 desc->tfm = op->fallback.blk; in fallback_blk_dec()
207 desc->tfm = op->fallback.blk; in fallback_blk_enc()
[all …]
Dsahara.c153 struct crypto_ablkcipher *fallback; member
649 ctx->fallback->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in sahara_aes_setkey()
650 ctx->fallback->base.crt_flags |= in sahara_aes_setkey()
653 ret = crypto_ablkcipher_setkey(ctx->fallback, key, keylen); in sahara_aes_setkey()
659 (ctx->fallback->base.crt_flags & CRYPTO_TFM_RES_MASK); in sahara_aes_setkey()
699 ablkcipher_request_set_tfm(req, ctx->fallback); in sahara_aes_ecb_encrypt()
717 ablkcipher_request_set_tfm(req, ctx->fallback); in sahara_aes_ecb_decrypt()
735 ablkcipher_request_set_tfm(req, ctx->fallback); in sahara_aes_cbc_encrypt()
753 ablkcipher_request_set_tfm(req, ctx->fallback); in sahara_aes_cbc_decrypt()
767 ctx->fallback = crypto_alloc_ablkcipher(name, 0, in sahara_aes_cra_init()
[all …]
Dmxs-dcp.c87 struct crypto_ablkcipher *fallback; member
383 ablkcipher_request_set_tfm(req, ctx->fallback); in mxs_dcp_block_fallback()
467 actx->fallback->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in mxs_dcp_aes_setkey()
468 actx->fallback->base.crt_flags |= in mxs_dcp_aes_setkey()
471 ret = crypto_ablkcipher_setkey(actx->fallback, key, len); in mxs_dcp_aes_setkey()
477 actx->fallback->base.crt_flags & CRYPTO_TFM_RES_MASK; in mxs_dcp_aes_setkey()
493 actx->fallback = blk; in mxs_dcp_aes_fallback_init()
502 crypto_free_ablkcipher(actx->fallback); in mxs_dcp_aes_fallback_exit()
503 actx->fallback = NULL; in mxs_dcp_aes_fallback_exit()
Dimg-hash.c112 struct crypto_ahash *fallback; member
487 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback); in img_hash_init()
551 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback); in img_hash_update()
566 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback); in img_hash_final()
580 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback); in img_hash_finup()
652 ctx->fallback = crypto_alloc_ahash(alg_name, 0, in img_hash_cra_init()
654 if (IS_ERR(ctx->fallback)) { in img_hash_cra_init()
656 err = PTR_ERR(ctx->fallback); in img_hash_cra_init()
673 crypto_free_ahash(tctx->fallback); in img_hash_cra_exit()
Dgeode-aes.h69 } fallback; member
Dmv_cesa.c128 struct crypto_shash *fallback; member
405 SHASH_DESC_ON_STACK(shash, tfm_ctx->fallback); in mv_hash_final_fallback()
408 shash->tfm = tfm_ctx->fallback; in mv_hash_final_fallback()
783 rc = crypto_shash_setkey(ctx->fallback, key, keylen); in mv_hash_setkey()
860 ctx->fallback = fallback_tfm; in mv_cra_hash_init()
878 crypto_shash_descsize(ctx->fallback)); in mv_cra_hash_init()
890 crypto_free_shash(ctx->fallback); in mv_cra_hash_exit()
Domap-sham.c172 struct crypto_shash *fallback; member
1135 return omap_sham_shash_digest(tctx->fallback, req->base.flags, in omap_sham_final_shash()
1205 err = crypto_shash_setkey(tctx->fallback, key, keylen); in omap_sham_setkey()
1240 tctx->fallback = crypto_alloc_shash(alg_name, 0, in omap_sham_cra_init_alg()
1242 if (IS_ERR(tctx->fallback)) { in omap_sham_cra_init_alg()
1245 return PTR_ERR(tctx->fallback); in omap_sham_cra_init_alg()
1259 crypto_free_shash(tctx->fallback); in omap_sham_cra_init_alg()
1307 crypto_free_shash(tctx->fallback); in omap_sham_cra_exit()
1308 tctx->fallback = NULL; in omap_sham_cra_exit()
/linux-4.1.27/arch/s390/crypto/
Daes_s390.c47 } fallback; member
64 struct crypto_blkcipher *fallback; member
100 sctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in setkey_fallback_cip()
101 sctx->fallback.cip->base.crt_flags |= (tfm->crt_flags & in setkey_fallback_cip()
104 ret = crypto_cipher_setkey(sctx->fallback.cip, in_key, key_len); in setkey_fallback_cip()
107 tfm->crt_flags |= (sctx->fallback.cip->base.crt_flags & in setkey_fallback_cip()
140 crypto_cipher_encrypt_one(sctx->fallback.cip, out, in); in aes_encrypt()
165 crypto_cipher_decrypt_one(sctx->fallback.cip, out, in); in aes_decrypt()
190 sctx->fallback.cip = crypto_alloc_cipher(name, 0, in fallback_init_cip()
193 if (IS_ERR(sctx->fallback.cip)) { in fallback_init_cip()
[all …]
/linux-4.1.27/drivers/crypto/qce/
Dablkcipher.c179 goto fallback; in qce_ablkcipher_setkey()
193 fallback: in qce_ablkcipher_setkey()
194 ret = crypto_ablkcipher_setkey(ctx->fallback, key, keylen); in qce_ablkcipher_setkey()
217 ablkcipher_request_set_tfm(req, ctx->fallback); in qce_ablkcipher_crypt()
244 ctx->fallback = crypto_alloc_ablkcipher(crypto_tfm_alg_name(tfm), in qce_ablkcipher_init()
248 if (IS_ERR(ctx->fallback)) in qce_ablkcipher_init()
249 return PTR_ERR(ctx->fallback); in qce_ablkcipher_init()
258 crypto_free_ablkcipher(ctx->fallback); in qce_ablkcipher_exit()
Dcipher.h25 struct crypto_ablkcipher *fallback; member
/linux-4.1.27/Documentation/devicetree/bindings/timer/
Drenesas,cmt.txt23 This is a fallback for the above renesas,cmt-32-* entries.
33 This is a fallback for the above renesas,cmt-32-fast-* entries.
43 This is a fallback for the above renesas,cmt-48-* entries.
53 This is a fallback for the renesas,cmt-48-r8a73a4,
Drenesas,mtu2.txt14 This is a fallback for the above renesas,mtu2-* entries
Drenesas,tmu.txt16 This is a fallback for the above renesas,tmu-* entries
/linux-4.1.27/arch/x86/vdso/
Dvclock_gettime.c297 goto fallback; in __vdso_clock_gettime()
301 goto fallback; in __vdso_clock_gettime()
310 goto fallback; in __vdso_clock_gettime()
314 fallback: in __vdso_clock_gettime()
/linux-4.1.27/Documentation/devicetree/bindings/spi/
Dspi-rspi.txt5 "renesas,rspi-<soctype>", "renesas,rspi" as fallback.
7 "renesas,rspi-<soctype>", "renesas,rspi-rz" as fallback.
9 "renesas,qspi-<soctype>", "renesas,qspi" as fallback.
Dsh-hspi.txt4 - compatible : "renesas,hspi-<soctype>", "renesas,hspi" as fallback.
/linux-4.1.27/drivers/gpu/drm/qxl/
Dqxl_object.c157 goto fallback; in qxl_bo_kmap_atomic_page()
164 fallback: in qxl_bo_kmap_atomic_page()
197 goto fallback; in qxl_bo_kunmap_atomic_page()
205 fallback: in qxl_bo_kunmap_atomic_page()
/linux-4.1.27/net/sched/
Dcls_flow.c134 goto fallback; \
140 goto fallback; \
153 fallback: in flow_get_nfct_src()
165 fallback: in flow_get_nfct_dst()
172 fallback: in flow_get_nfct_proto_src()
179 fallback: in flow_get_nfct_proto_dst()
Dsch_cbq.c245 goto fallback; in cbq_classify()
255 goto fallback; in cbq_classify()
258 goto fallback; in cbq_classify()
281 fallback: in cbq_classify()
/linux-4.1.27/arch/mips/include/asm/mach-bcm47xx/
Dbcm47xx.h49 bool fallback);
/linux-4.1.27/drivers/gpu/drm/omapdrm/
Domap_fbdev.c65 goto fallback; in omap_fbdev_pan_display()
68 goto fallback; in omap_fbdev_pan_display()
79 fallback: in omap_fbdev_pan_display()
/linux-4.1.27/Documentation/devicetree/bindings/pwm/
Dpwm.txt20 property is given, the name of the user node will be used as fallback.
41 because the name "backlight" would be used as fallback anyway.
/linux-4.1.27/mm/
Dbootmem.c497 unsigned long fallback = 0; in alloc_bootmem_bdata() local
537 fallback = sidx + 1; in alloc_bootmem_bdata()
591 if (fallback) { in alloc_bootmem_bdata()
592 sidx = align_idx(bdata, fallback - 1, step); in alloc_bootmem_bdata()
593 fallback = 0; in alloc_bootmem_bdata()
/linux-4.1.27/tools/perf/
Dbuiltin-help.c362 const char *fallback = getenv("PERF_MAN_VIEWER"); in show_man_page() local
368 if (fallback) in show_man_page()
369 exec_viewer(fallback, page); in show_man_page()
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-riic.txt4 - compatible : "renesas,riic-<soctype>". "renesas,riic-rz" as fallback
Di2c-sh_mobile.txt4 - compatible : "renesas,iic-<soctype>". "renesas,rmobile-iic" as fallback
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dmxs-phy.txt10 "fsl,imx23-usbphy" is still a fallback for other strings
/linux-4.1.27/arch/powerpc/platforms/pasemi/
Ddma_lib.c489 goto fallback; in map_onedev()
493 goto fallback; in map_onedev()
496 fallback: in map_onedev()
/linux-4.1.27/Documentation/vm/
Dnuma75 "overflow" or "fallback".
125 allows such allocations to fallback to other nearby nodes when a node that
128 Some kernel allocations do not want or cannot tolerate this allocation fallback
137 may revert to its own fallback path. The slab kernel memory allocator is an
143 attached to memoryless nodes would always incur the fallback path overhead
Dtranshuge.txt38 - "graceful fallback": mm components which don't have transparent
108 to never try to defrag memory and simply fallback to regular pages
302 == Graceful fallback ==
309 fallback design, with a one liner change, you can avoid to write
342 pmd_trans_huge returns false, you just fallback in the old code
348 should just drop the page_table_lock and fallback to the old code as
353 wait_split_huge_page and then fallback the old code paths. You are
Dhugetlbpage.txt200 memory for a huge page, the allocation will not "fallback" to the nearest
Dunevictable-lru.txt637 with it - the usual fallback position.
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Drenesas,fsi.txt6 fallback.
/linux-4.1.27/drivers/gpu/drm/i915/
Dintel_fbdev.c358 bool fallback = true; in intel_fb_initial_config() local
483 fallback = false; in intel_fb_initial_config()
502 fallback = true; in intel_fb_initial_config()
505 if (fallback) { in intel_fb_initial_config()
/linux-4.1.27/Documentation/devicetree/bindings/thermal/
Drcar-thermal.txt5 as fallback.
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Drenesas,irqc.txt5 - compatible: has to be "renesas,irqc-<soctype>", "renesas,irqc" as fallback.
Drenesas,intc-irqpin.txt6 as fallback.
/linux-4.1.27/Documentation/
Ddebugging-modules.txt7 want to know if it failed for the fallback code for old aliases in
Ddma-buf-sharing.txt236 - fallback operations, e.g. if the devices is connected to a usb bus and the
340 - CPU fallback processing in a pipeline and
343 1. CPU fallback processing in a pipeline
Dkernel-parameters.txt632 [all] jiffies (this is the base, fallback clocksource)
2368 and restore using xsave. The kernel will fallback to
/linux-4.1.27/arch/alpha/lib/
Dev6-memcpy.S96 addq $16, 64, $1 # E : fallback value for wh64
118 # fallback wh64 address if < 2 more trips
/linux-4.1.27/net/ipv4/netfilter/
Dnf_log_ipv4.c286 goto fallback; in dump_ipv4_mac_header()
298 fallback: in dump_ipv4_mac_header()
/linux-4.1.27/net/ipv6/netfilter/
Dnf_log_ipv6.c299 goto fallback; in dump_ipv6_mac_header()
311 fallback: in dump_ipv6_mac_header()
/linux-4.1.27/fs/ext2/
Dialloc.c309 goto fallback; in find_group_orlov()
345 fallback: in find_group_orlov()
361 goto fallback; in find_group_orlov()
/linux-4.1.27/drivers/xen/
DMakefile4 obj-$(CONFIG_X86) += fallback.o
/linux-4.1.27/fs/ext3/
Dialloc.c236 goto fallback; in find_group_orlov()
257 fallback: in find_group_orlov()
273 goto fallback; in find_group_orlov()
/linux-4.1.27/Documentation/arm/
Dfirmware.txt29 fallback to legacy operation).
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
Dnrs.c436 struct ptlrpc_nrs_policy *fallback = NULL; in nrs_resource_get_safe() local
445 fallback = nrs->nrs_policy_fallback; in nrs_resource_get_safe()
446 nrs_policy_get_locked(fallback); in nrs_resource_get_safe()
457 resp[NRS_RES_FALLBACK] = nrs_resource_get(fallback, nrq, moving_req); in nrs_resource_get_safe()
/linux-4.1.27/Documentation/video4linux/
DREADME.cx8823 cards it works, so there is mono sound available as fallback.
/linux-4.1.27/Documentation/devicetree/bindings/power/
Drenesas,sysc-rmobile.txt12 fallback.
/linux-4.1.27/drivers/net/wireless/p54/
DKconfig52 bool "Include fallback EEPROM blob"
/linux-4.1.27/drivers/net/wireless/b43legacy/
Ddma.c803 bool fallback = false; in b43legacy_dma_set_mask() local
814 fallback = true; in b43legacy_dma_set_mask()
819 fallback = true; in b43legacy_dma_set_mask()
827 if (fallback) { in b43legacy_dma_set_mask()
/linux-4.1.27/Documentation/devicetree/bindings/mtd/
Dmtd-physmap.txt39 For ROM compatible devices (and ROM fallback from cfi-flash), the following
/linux-4.1.27/drivers/tty/vt/
Dvt_ioctl.c1262 goto fallback; in vt_compat_ioctl()
1270 goto fallback; in vt_compat_ioctl()
1275 fallback: in vt_compat_ioctl()
/linux-4.1.27/drivers/pcmcia/
Drsrc_nonstatic.c409 int fallback (struct pcmcia_socket *s, in do_mem_probe()
434 if ((fail) && (fallback)) { in do_mem_probe()
436 if (!do_validate_mem(s, j, step, fallback)) in do_mem_probe()
/linux-4.1.27/net/ipv4/
Dtcp_input.c1393 goto fallback; in tcp_shift_skb_data()
1398 goto fallback; in tcp_shift_skb_data()
1400 goto fallback; in tcp_shift_skb_data()
1403 goto fallback; in tcp_shift_skb_data()
1407 goto fallback; in tcp_shift_skb_data()
1411 goto fallback; in tcp_shift_skb_data()
1425 goto fallback; in tcp_shift_skb_data()
1449 goto fallback; in tcp_shift_skb_data()
1466 goto fallback; in tcp_shift_skb_data()
1480 goto fallback; in tcp_shift_skb_data()
[all …]
Dtcp_output.c3157 goto fallback; in tcp_send_syn_data()
3163 goto fallback; in tcp_send_syn_data()
3181 goto fallback; in tcp_send_syn_data()
3189 goto fallback; in tcp_send_syn_data()
3220 fallback: in tcp_send_syn_data()
DKconfig460 selection will be made (CUBIC with new Reno as a fallback).
/linux-4.1.27/fs/ext4/
Dialloc.c475 goto fallback; in find_group_orlov()
499 goto fallback; in find_group_orlov()
530 fallback: in find_group_orlov()
/linux-4.1.27/kernel/sched/
Ddeadline.c226 bool fallback = false; in dl_task_offline_migration() local
237 fallback = true; in dl_task_offline_migration()
261 if (!fallback) in dl_task_offline_migration()
/linux-4.1.27/drivers/iommu/
Ddmar.c190 goto fallback; in dmar_match_pci_path()
192 goto fallback; in dmar_match_pci_path()
197 goto fallback; in dmar_match_pci_path()
202 fallback: in dmar_match_pci_path()
/linux-4.1.27/drivers/net/wireless/b43/
Ddma.c1062 bool fallback = false; in b43_dma_set_mask() local
1073 fallback = true; in b43_dma_set_mask()
1078 fallback = true; in b43_dma_set_mask()
1086 if (fallback) { in b43_dma_set_mask()
DKconfig111 #Data transfers to the device via PIO. We want it as a fallback even
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd_cb.c623 ksock_conn_t *fallback = NULL; in ksocknal_find_conn_locked() local
655 if (fallback == NULL || fnob > nob || in ksocknal_find_conn_locked()
657 cfs_time_after(fallback->ksnc_tx_last_post, c->ksnc_tx_last_post))) { in ksocknal_find_conn_locked()
658 fallback = c; in ksocknal_find_conn_locked()
666 conn = (typed != NULL) ? typed : fallback; in ksocknal_find_conn_locked()
/linux-4.1.27/Documentation/leds/
Dleds-class.txt65 will check and implement software fallback if necessary.
/linux-4.1.27/Documentation/networking/
Digb.txt93 found, the system will fallback to MSI or to Legacy interrupts.
De1000e.txt65 InterruptThrottleRate value of 8000, providing a good fallback value for
De1000.txt97 InterruptThrottleRate value of 8000, providing a good fallback value for
Dcan.txt209 some reason the SocketCAN core can do this task as a fallback solution.
946 (aka loopback) as fallback solution:
Dpacket_mmap.txt1033 software fallback was invoked *within* PF_PACKET's processing code (less
Dip-sysctl.txt514 Note, that syncookies is fallback facility.
1539 0 - (default) No enforcement of a MLD version, MLDv1 fallback allowed
/linux-4.1.27/drivers/s390/net/
Dqeth_core_main.c4313 int fallback = *(int *)reply->param; in qeth_setadpparms_set_access_ctrl_cb() local
4342 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4348 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4359 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4365 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4371 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4377 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4386 if (fallback) in qeth_setadpparms_set_access_ctrl_cb()
4395 enum qeth_ipa_isolation_modes isolation, int fallback) in qeth_setadpparms_set_access_ctrl() argument
4417 &fallback); in qeth_setadpparms_set_access_ctrl()
[all …]
Dqeth_core.h963 int qeth_set_access_ctrl_online(struct qeth_card *card, int fallback);
/linux-4.1.27/tools/perf/util/
Dannotate.c948 goto fallback; in symbol__annotate()
950 goto fallback; in symbol__annotate()
955 fallback: in symbol__annotate()
/linux-4.1.27/sound/soc/sh/rcar/
Drsnd.h245 int (*fallback)(struct rsnd_mod *mod, member
Dssi.c567 .fallback = rsnd_ssi_fallback,
Dcore.c977 rsnd_dai_call(fallback, io, priv); in rsnd_rdai_continuance_probe()
/linux-4.1.27/Documentation/device-mapper/
Dstatistics.txt28 fallback to using vmalloc space. At most, 1/4 of the overall system
Dcache.txt143 dirty flags this data is lost if there's a crash so a safe fallback
/linux-4.1.27/arch/xtensa/
DKconfig405 This is a fallback start address of the default memory area, it is
423 This is a fallback size of the default memory area, it is used when
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
Den_tx.c684 void *accel_priv, select_queue_fallback_t fallback) in mlx4_en_select_queue() argument
696 return fallback(dev, skb) % rings_p_up + up * rings_p_up; in mlx4_en_select_queue()
Dmlx4_en.h762 void *accel_priv, select_queue_fallback_t fallback);
/linux-4.1.27/sound/soc/codecs/
Dpcm512x.c743 goto fallback; in pcm512x_find_pll_coeff()
770 fallback: in pcm512x_find_pll_coeff()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-class-net63 operating correctly and designating another fallback interface.
/linux-4.1.27/Documentation/i2c/
Dslave-interface169 byte-based transactions as the ultimate fallback because this is how the
/linux-4.1.27/block/
Dbio.c210 fallback: in bvec_alloc()
230 goto fallback; in bvec_alloc()
/linux-4.1.27/drivers/mtd/chips/
DKconfig220 or removable media. Use of this driver as a fallback chip probe
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/
Dos_intfs.c299 select_queue_fallback_t fallback) in rtw_select_queue() argument
/linux-4.1.27/Documentation/ia64/
Daliasing.txt99 machines, this should use an uncacheable mapping as a fallback.
/linux-4.1.27/drivers/net/ethernet/
Dlantiq_etop.c622 void *accel_priv, select_queue_fallback_t fallback) in ltq_etop_select_queue() argument
/linux-4.1.27/net/mac80211/
Diface.c1115 select_queue_fallback_t fallback) in ieee80211_netdev_select_queue() argument
1134 select_queue_fallback_t fallback) in ieee80211_monitor_select_queue() argument
/linux-4.1.27/drivers/power/
Dab8500_charger.c345 bool fallback) in ab8500_enable_disable_sw_fallback() argument
353 dev_dbg(di->dev, "SW Fallback: %d\n", fallback); in ab8500_enable_disable_sw_fallback()
381 if (fallback) in ab8500_enable_disable_sw_fallback()
/linux-4.1.27/drivers/net/hyperv/
Dnetvsc_drv.c215 void *accel_priv, select_queue_fallback_t fallback) in netvsc_select_queue() argument
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_cmn.h495 void *accel_priv, select_queue_fallback_t fallback);
Dbnx2x_cmn.c1910 void *accel_priv, select_queue_fallback_t fallback) in bnx2x_select_queue() argument
1932 return fallback(dev, skb) % BNX2X_NUM_ETH_QUEUES(bp); in bnx2x_select_queue()
/linux-4.1.27/Documentation/powerpc/
Dfirmware-assisted-dump.txt166 fallback to existing kdump mechanism if 'crashkernel=' option
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-cd.1994-2004146 * 4.07 Dec 17, 1997 -- fallback to set pc->stat on "tray open"
/linux-4.1.27/drivers/base/
DKconfig160 (e.g. udev) for loading firmware files as a fallback after the
/linux-4.1.27/drivers/staging/rtl8188eu/os_dep/
Dos_intfs.c648 void *accel_priv, select_queue_fallback_t fallback) in rtw_select_queue() argument
/linux-4.1.27/sound/soc/
Dsoc-dapm.c2208 struct snd_soc_dapm_widget *fallback = NULL; in dapm_find_widget() local
2215 fallback = w; in dapm_find_widget()
2220 return fallback; in dapm_find_widget()
/linux-4.1.27/drivers/staging/netlogic/
Dxlr_net.c296 select_queue_fallback_t fallback) in xlr_net_select_queue() argument
/linux-4.1.27/drivers/net/wireless/mwifiex/
Dmain.c978 void *accel_priv, select_queue_fallback_t fallback) in mwifiex_netdev_select_wmm_queue() argument
/linux-4.1.27/Documentation/filesystems/
Dvfat.txt175 dos1xfloppy -- If set, use a fallback default BIOS Parameter Block
Dramfs-rootfs-initramfs.txt339 not contain an /init program. The fallback is legacy code, there to ensure a
/linux-4.1.27/drivers/media/radio/
DKconfig362 in case of automatic probing failure, ie. as a fallback.
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio.txt33 on the codec. It has a generic parser as a fallback, but this
68 controllers, the automatic check and fallback to LPIB as described in
/linux-4.1.27/arch/x86/
DKconfig585 one and will fallback to default.
2491 modes, it is adverticed as fallback platform framebuffer so legacy
2494 marked as fallback platform framebuffers as usual.
2501 and others enabled as fallback if a system framebuffer is
/linux-4.1.27/drivers/net/ethernet/tile/
Dtilegx.c2078 void *accel_priv, select_queue_fallback_t fallback) in tile_net_select_queue() argument
/linux-4.1.27/Documentation/PCI/
DMSI-HOWTO.txt373 Note how pci_enable_msix_range() return value is analyzed for a fallback -
/linux-4.1.27/drivers/net/
Dxen-netfront.c497 void *accel_priv, select_queue_fallback_t fallback) in xennet_select_queue() argument
Dtun.c387 void *accel_priv, select_queue_fallback_t fallback) in tun_select_queue() argument
/linux-4.1.27/drivers/net/ethernet/sun/
Dsunvnet.c1135 void *accel_priv, select_queue_fallback_t fallback) in vnet_select_queue() argument
/linux-4.1.27/drivers/net/ethernet/ti/
Dnetcp_core.c1795 select_queue_fallback_t fallback) in netcp_select_queue() argument
/linux-4.1.27/drivers/ata/
DKconfig970 comment "Generic fallback / legacy drivers"
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_main.c1282 void *accel_priv, select_queue_fallback_t fallback) in cxgb_select_queue() argument
1324 return fallback(dev, skb) % dev->real_num_tx_queues; in cxgb_select_queue()
/linux-4.1.27/Documentation/sysctl/
Dvm.txt445 (fallback from the local zone occurs) slabs will be reclaimed if more
/linux-4.1.27/include/linux/
Dnetdevice.h1055 select_queue_fallback_t fallback);
/linux-4.1.27/drivers/net/team/
Dteam.c1668 void *accel_priv, select_queue_fallback_t fallback) in team_select_queue() argument
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/
Dixgbe_main.c7238 void *accel_priv, select_queue_fallback_t fallback) in ixgbe_select_queue() argument
7264 return fallback(dev, skb); in ixgbe_select_queue()
7277 return fallback(dev, skb); in ixgbe_select_queue()
/linux-4.1.27/drivers/net/bonding/
Dbond_main.c3942 void *accel_priv, select_queue_fallback_t fallback) in bond_select_queue() argument
/linux-4.1.27/Documentation/devicetree/
Dbooting-without-of.txt902 block size and will fallback to cache line size for backward