Home
last modified time | relevance | path

Searched refs:ext (Results 1 – 200 of 354) sorted by relevance

12

/linux-4.1.27/drivers/staging/lustre/lustre/osc/
Dosc_cache.c50 static int osc_extent_wait(const struct lu_env *env, struct osc_extent *ext,
73 static inline char *ext_flags(struct osc_extent *ext, char *flags) in ext_flags() argument
76 *buf++ = ext->oe_rw ? 'r' : 'w'; in ext_flags()
77 if (ext->oe_intree) in ext_flags()
79 if (ext->oe_srvlock) in ext_flags()
81 if (ext->oe_hp) in ext_flags()
83 if (ext->oe_urgent) in ext_flags()
85 if (ext->oe_memalloc) in ext_flags()
87 if (ext->oe_trunc_pending) in ext_flags()
89 if (ext->oe_fsync_wait) in ext_flags()
[all …]
Dosc_cl_internal.h679 int osc_extent_finish(const struct lu_env *env, struct osc_extent *ext,
681 void osc_extent_release(const struct lu_env *env, struct osc_extent *ext);
Dosc_request.c1758 struct osc_extent *ext; in brw_interpret() local
1793 list_for_each_entry_safe(ext, tmp, &aa->aa_exts, oe_link) { in brw_interpret()
1795 obj = osc2cl(ext->oe_obj); in brw_interpret()
1799 list_del_init(&ext->oe_link); in brw_interpret()
1800 osc_extent_finish(env, ext, 1, rc); in brw_interpret()
1865 struct osc_extent *ext; in osc_build_rpc() local
1889 list_for_each_entry(ext, ext_list, oe_link) { in osc_build_rpc()
1890 LASSERT(ext->oe_state == OES_RPC); in osc_build_rpc()
1891 mem_tight |= ext->oe_memalloc; in osc_build_rpc()
1892 list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) { in osc_build_rpc()
[all …]
Dosc_lock.c404 struct ldlm_extent *ext; in osc_lock_granted() local
412 ext = &dlmlock->l_policy_data.l_extent; in osc_lock_granted()
418 descr->cld_start = cl_index(descr->cld_obj, ext->start); in osc_lock_granted()
419 descr->cld_end = cl_index(descr->cld_obj, ext->end); in osc_lock_granted()
420 descr->cld_gid = ext->gid; in osc_lock_granted()
/linux-4.1.27/include/net/netfilter/
Dnf_conntrack_extend.h55 static inline bool __nf_ct_ext_exist(const struct nf_ct_ext *ext, u8 id) in __nf_ct_ext_exist() argument
57 return !!ext->offset[id]; in __nf_ct_ext_exist()
62 return (ct->ext && __nf_ct_ext_exist(ct->ext, id)); in nf_ct_ext_exist()
70 return (void *)ct->ext + ct->ext->offset[id]; in __nf_ct_ext_find()
72 #define nf_ct_ext_find(ext, id) \ argument
73 ((id##_TYPE *)__nf_ct_ext_find((ext), (id)))
79 if (ct->ext) in nf_ct_ext_destroy()
88 if (ct->ext) in nf_ct_ext_free()
89 kfree_rcu(ct->ext, rcu); in nf_ct_ext_free()
Dnf_tables.h241 const struct nft_set_ext **ext);
249 const struct nft_set_ext **ext);
445 static inline void nft_set_ext_init(struct nft_set_ext *ext, in nft_set_ext_init() argument
448 memcpy(ext->offset, tmpl->offset, sizeof(ext->offset)); in nft_set_ext_init()
451 static inline bool __nft_set_ext_exists(const struct nft_set_ext *ext, u8 id) in __nft_set_ext_exists() argument
453 return !!ext->offset[id]; in __nft_set_ext_exists()
456 static inline bool nft_set_ext_exists(const struct nft_set_ext *ext, u8 id) in nft_set_ext_exists() argument
458 return ext && __nft_set_ext_exists(ext, id); in nft_set_ext_exists()
461 static inline void *nft_set_ext(const struct nft_set_ext *ext, u8 id) in nft_set_ext() argument
463 return (void *)ext + ext->offset[id]; in nft_set_ext()
[all …]
/linux-4.1.27/tools/testing/selftests/
Dgen_kselftest_tar.sh17 ext=".tar.gz"
22 ext=".tar"
26 ext=".tar.gz"
30 ext=".tar.bz2"
34 ext=".tar.xz"
48 tar $copts kselftest${ext} $install_dir
49 echo "Kselftest archive kselftest${ext} created!"
/linux-4.1.27/fs/ext4/
Dext4_extents.h191 static inline void ext4_ext_mark_unwritten(struct ext4_extent *ext) in ext4_ext_mark_unwritten() argument
194 BUG_ON((le16_to_cpu(ext->ee_len) & ~EXT_INIT_MAX_LEN) == 0); in ext4_ext_mark_unwritten()
195 ext->ee_len |= cpu_to_le16(EXT_INIT_MAX_LEN); in ext4_ext_mark_unwritten()
198 static inline int ext4_ext_is_unwritten(struct ext4_extent *ext) in ext4_ext_is_unwritten() argument
201 return (le16_to_cpu(ext->ee_len) > EXT_INIT_MAX_LEN); in ext4_ext_is_unwritten()
204 static inline int ext4_ext_get_actual_len(struct ext4_extent *ext) in ext4_ext_get_actual_len() argument
206 return (le16_to_cpu(ext->ee_len) <= EXT_INIT_MAX_LEN ? in ext4_ext_get_actual_len()
207 le16_to_cpu(ext->ee_len) : in ext4_ext_get_actual_len()
208 (le16_to_cpu(ext->ee_len) - EXT_INIT_MAX_LEN)); in ext4_ext_get_actual_len()
211 static inline void ext4_ext_mark_initialized(struct ext4_extent *ext) in ext4_ext_mark_initialized() argument
[all …]
Dmove_extent.c102 struct ext4_extent *ext; in mext_check_coverage() local
109 ext = path[ext_depth(inode)].p_ext; in mext_check_coverage()
110 if (unwritten != ext4_ext_is_unwritten(ext)) in mext_check_coverage()
112 from += ext4_ext_get_actual_len(ext); in mext_check_coverage()
/linux-4.1.27/net/netfilter/
Dnft_rbtree.c29 struct nft_set_ext ext; member
34 const struct nft_set_ext **ext) in nft_rbtree_lookup() argument
47 d = memcmp(nft_set_ext_key(&rbe->ext), key, set->klen); in nft_rbtree_lookup()
55 if (!nft_set_elem_active(&rbe->ext, genmask)) { in nft_rbtree_lookup()
59 if (nft_set_ext_exists(&rbe->ext, NFT_SET_EXT_FLAGS) && in nft_rbtree_lookup()
60 *nft_set_ext_flags(&rbe->ext) & in nft_rbtree_lookup()
65 *ext = &rbe->ext; in nft_rbtree_lookup()
93 d = memcmp(nft_set_ext_key(&rbe->ext), in __nft_rbtree_insert()
94 nft_set_ext_key(&new->ext), in __nft_rbtree_insert()
101 if (nft_set_elem_active(&rbe->ext, genmask)) in __nft_rbtree_insert()
[all …]
Dnft_hash.c34 struct nft_set_ext ext; member
56 return jhash(nft_set_ext_key(&he->ext), len, seed); in nft_hash_obj()
65 if (memcmp(nft_set_ext_key(&he->ext), x->key, x->set->klen)) in nft_hash_cmp()
67 if (nft_set_elem_expired(&he->ext)) in nft_hash_cmp()
69 if (!nft_set_elem_active(&he->ext, x->genmask)) in nft_hash_cmp()
75 const struct nft_set_ext **ext) in nft_hash_lookup() argument
87 *ext = &he->ext; in nft_hash_lookup()
98 const struct nft_set_ext **ext) in nft_hash_update() argument
119 *ext = &he->ext; in nft_hash_update()
148 nft_set_elem_change_active(set, &he->ext); in nft_hash_activate()
[all …]
Dnf_conntrack_extend.c26 struct nf_ct_ext *ext = ct->ext; in __nf_ct_ext_destroy() local
29 if (!__nf_ct_ext_exist(ext, i)) in __nf_ct_ext_destroy()
47 nf_ct_ext_create(struct nf_ct_ext **ext, enum nf_ct_ext_id id, in nf_ct_ext_create() argument
62 *ext = kzalloc(alloc_size, gfp); in nf_ct_ext_create()
63 if (!*ext) in nf_ct_ext_create()
66 (*ext)->offset[id] = off; in nf_ct_ext_create()
67 (*ext)->len = len; in nf_ct_ext_create()
69 return (void *)(*ext) + off; in nf_ct_ext_create()
82 old = ct->ext; in __nf_ct_ext_add_length()
84 return nf_ct_ext_create(&ct->ext, id, var_alloc_len, gfp); in __nf_ct_ext_add_length()
[all …]
Dnft_dynset.c34 struct nft_set_ext *ext; in nft_dynset_new() local
52 ext = nft_set_elem_ext(set, elem); in nft_dynset_new()
54 nft_expr_clone(nft_set_ext_expr(ext), priv->expr); in nft_dynset_new()
65 const struct nft_set_ext *ext; in nft_dynset_eval() local
70 expr, regs, &ext)) { in nft_dynset_eval()
72 if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPR)) in nft_dynset_eval()
73 sexpr = nft_set_ext_expr(ext); in nft_dynset_eval()
76 nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) { in nft_dynset_eval()
78 *nft_set_ext_expiration(ext) = jiffies + timeout; in nft_dynset_eval()
Dxt_set.c46 .ext.timeout = t, \
195 if (!match_counter0(opt.ext.packets, &info->packets)) in set_match_v3()
197 return match_counter0(opt.ext.bytes, &info->bytes); in set_match_v3()
241 if (!match_counter(opt.ext.packets, &info->packets)) in set_match_v4()
243 return match_counter(opt.ext.bytes, &info->bytes); in set_match_v4()
401 if (add_opt.ext.timeout != IPSET_NO_TIMEOUT && in set_target_v2()
402 add_opt.ext.timeout > UINT_MAX/MSEC_PER_SEC) in set_target_v2()
403 add_opt.ext.timeout = UINT_MAX/MSEC_PER_SEC; in set_target_v2()
431 if (add_opt.ext.timeout != IPSET_NO_TIMEOUT && in set_target_v3()
432 add_opt.ext.timeout > UINT_MAX/MSEC_PER_SEC) in set_target_v3()
[all …]
Dnft_lookup.c34 const struct nft_set_ext *ext; in nft_lookup_eval() local
36 if (set->ops->lookup(set, &regs->data[priv->sreg], &ext)) { in nft_lookup_eval()
39 nft_set_ext_data(ext), set->dlen); in nft_lookup_eval()
Dnf_tables_api.c2845 const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv); in nf_tables_bind_check_setelem() local
2849 return nft_validate_register_store(ctx, dreg, nft_set_ext_data(ext), in nf_tables_bind_check_setelem()
2982 const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv); in nf_tables_fill_setelem() local
2990 if (nft_data_dump(skb, NFTA_SET_ELEM_KEY, nft_set_ext_key(ext), in nf_tables_fill_setelem()
2994 if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA) && in nf_tables_fill_setelem()
2995 nft_data_dump(skb, NFTA_SET_ELEM_DATA, nft_set_ext_data(ext), in nf_tables_fill_setelem()
3000 if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPR) && in nf_tables_fill_setelem()
3001 nft_expr_dump(skb, NFTA_SET_ELEM_EXPR, nft_set_ext_expr(ext)) < 0) in nf_tables_fill_setelem()
3004 if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) && in nf_tables_fill_setelem()
3006 htonl(*nft_set_ext_flags(ext)))) in nf_tables_fill_setelem()
[all …]
Dnf_conntrack_h323_asn1.c495 unsigned int ext, bmp, i, opt, len = 0, bmp2, bmp2_len; in decode_seq() local
506 ext = (f->attr & EXT) ? get_bit(bs) : 0; in decode_seq()
554 if (!ext) in decode_seq()
702 unsigned int type, ext, len = 0; in decode_choice() local
714 ext = 1; in decode_choice()
717 ext = 0; in decode_choice()
743 if (ext || (son->attr & OPEN)) { in decode_choice()
/linux-4.1.27/fs/hfsplus/
Dextents.c25 k1id = k1->ext.cnid; in hfsplus_ext_cmp_key()
26 k2id = k2->ext.cnid; in hfsplus_ext_cmp_key()
30 if (k1->ext.fork_type != k2->ext.fork_type) in hfsplus_ext_cmp_key()
31 return k1->ext.fork_type < k2->ext.fork_type ? -1 : 1; in hfsplus_ext_cmp_key()
33 k1s = k1->ext.start_block; in hfsplus_ext_cmp_key()
34 k2s = k2->ext.start_block; in hfsplus_ext_cmp_key()
44 key->ext.cnid = cpu_to_be32(cnid); in hfsplus_ext_build_key()
45 key->ext.start_block = cpu_to_be32(block); in hfsplus_ext_build_key()
46 key->ext.fork_type = type; in hfsplus_ext_build_key()
47 key->ext.pad = 0; in hfsplus_ext_build_key()
[all …]
Dbfind.c63 cur_cnid = fd->key->ext.cnid; in hfs_find_1st_rec_by_cnid()
64 search_cnid = fd->search_key->ext.cnid; in hfs_find_1st_rec_by_cnid()
/linux-4.1.27/drivers/media/common/saa7146/
Dsaa7146_core.c308 if (dev->ext) { in interrupt_hw()
309 if (dev->ext->irq_mask & isr) { in interrupt_hw()
310 if (dev->ext->irq_func) in interrupt_hw()
311 dev->ext->irq_func(dev, &isr); in interrupt_hw()
312 isr &= ~dev->ext->irq_mask; in interrupt_hw()
356 struct saa7146_extension *ext = pci_ext->ext; in saa7146_init_one() local
447 dev->ext = ext; in saa7146_init_one()
465 if (ext->probe && ext->probe(dev)) { in saa7146_init_one()
470 if (ext->attach(dev, pci_ext)) { in saa7146_init_one()
523 dev->ext->detach(dev); in saa7146_remove_one()
[all …]
Dsaa7146_i2c.c188 if( 0 != (SAA7146_USE_I2C_IRQ & dev->ext->flags)) { in saa7146_i2c_writeout()
314 if ( count > 3 || 0 != (SAA7146_I2C_SHORT_DELAY & dev->ext->flags) ) in saa7146_i2c_transfer()
339 if (-EREMOTEIO == err && 0 != (SAA7146_USE_I2C_IRQ & dev->ext->flags)) in saa7146_i2c_transfer()
Dsaa7146_fops.c210 if( NULL == dev->ext ) { in fops_open()
244 if( 0 == try_module_get(dev->ext->module)) { in fops_open()
281 module_put(dev->ext->module); in fops_release()
/linux-4.1.27/tools/perf/tests/
Dkmod-path.c7 bool kmod, bool comp, const char *name, const char *ext) in test() argument
17 path, alloc_name, alloc_ext, m.kmod, m.comp, m.name, m.ext); in test()
22 if (ext) in test()
23 TEST_ASSERT_VAL("wrong ext", m.ext && !strcmp(ext, m.ext)); in test()
25 TEST_ASSERT_VAL("wrong ext", !m.ext); in test()
33 free(m.ext); in test()
/linux-4.1.27/fs/hfs/
Dextent.c24 key->ext.FkType = type; in hfs_ext_build_key()
25 key->ext.FNum = cpu_to_be32(cnid); in hfs_ext_build_key()
26 key->ext.FABN = cpu_to_be16(block); in hfs_ext_build_key()
55 fnum1 = key1->ext.FNum; in hfs_ext_keycmp()
56 fnum2 = key2->ext.FNum; in hfs_ext_keycmp()
59 if (key1->ext.FkType != key2->ext.FkType) in hfs_ext_keycmp()
60 return key1->ext.FkType < key2->ext.FkType ? -1 : 1; in hfs_ext_keycmp()
62 block1 = key1->ext.FABN; in hfs_ext_keycmp()
63 block2 = key2->ext.FABN; in hfs_ext_keycmp()
74 static u16 hfs_ext_find_block(struct hfs_extent *ext, u16 off) in hfs_ext_find_block() argument
[all …]
Dinode.c263 void hfs_inode_read_fork(struct inode *inode, struct hfs_extent *ext, in hfs_inode_read_fork() argument
271 memcpy(HFS_I(inode)->first_extents, ext, sizeof(hfs_extent_rec)); in hfs_inode_read_fork()
273 count += be16_to_cpu(ext[i].count); in hfs_inode_read_fork()
403 void hfs_inode_write_fork(struct inode *inode, struct hfs_extent *ext, in hfs_inode_write_fork() argument
406 memcpy(ext, HFS_I(inode)->first_extents, sizeof(hfs_extent_rec)); in hfs_inode_write_fork()
/linux-4.1.27/net/netfilter/ipset/
Dip_set_hash_ipmark.c93 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipmark4_kadt() local
99 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipmark4_kadt()
109 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipmark4_uadt() local
127 ip_set_get_extensions(set, tb, &ext); in hash_ipmark4_uadt()
136 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipmark4_uadt()
159 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipmark4_uadt()
227 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipmark6_kadt() local
233 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipmark6_kadt()
243 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipmark6_uadt() local
262 ip_set_get_extensions(set, tb, &ext); in hash_ipmark6_uadt()
[all …]
Dip_set_hash_ip.c89 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ip4_kadt() local
98 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ip4_kadt()
108 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ip4_uadt() local
125 ip_set_get_extensions(set, tb, &ext); in hash_ip4_uadt()
135 return adtfn(set, &e, &ext, &ext, flags); in hash_ip4_uadt()
161 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ip4_uadt()
230 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ip6_kadt() local
237 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ip6_kadt()
247 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ip6_uadt() local
265 ip_set_get_extensions(set, tb, &ext); in hash_ip6_uadt()
[all …]
Dip_set_list_set.c53 struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) in list_set_ktest() argument
75 ext, &opt->ext, in list_set_ktest()
79 ext, &opt->ext, in list_set_ktest()
90 struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) in list_set_kadd() argument
114 struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) in list_set_kdel() argument
140 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in list_set_kadt() local
144 return list_set_ktest(set, skb, par, opt, &ext); in list_set_kadt()
146 return list_set_kadd(set, skb, par, opt, &ext); in list_set_kadt()
148 return list_set_kdel(set, skb, par, opt, &ext); in list_set_kadt()
172 const struct ip_set_ext *ext) in list_set_add() argument
[all …]
Dip_set_hash_ipport.c99 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipport4_kadt() local
106 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipport4_kadt()
116 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipport4_uadt() local
136 ip_set_get_extensions(set, tb, &ext); in hash_ipport4_uadt()
160 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipport4_uadt()
194 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipport4_uadt()
266 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipport6_kadt() local
273 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipport6_kadt()
283 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipport6_uadt() local
305 ip_set_get_extensions(set, tb, &ext); in hash_ipport6_uadt()
[all …]
Dip_set_hash_ipportip.c100 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipportip4_kadt() local
108 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipportip4_kadt()
118 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipportip4_uadt() local
138 ip_set_get_extensions(set, tb, &ext); in hash_ipportip4_uadt()
166 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipportip4_uadt()
200 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipportip4_uadt()
273 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipportip6_kadt() local
281 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipportip6_kadt()
291 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipportip6_uadt() local
313 ip_set_get_extensions(set, tb, &ext); in hash_ipportip6_uadt()
[all …]
Dip_set_hash_net.c126 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_net4_kadt() local
136 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_net4_kadt()
146 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_net4_uadt() local
164 ip_set_get_extensions(set, tb, &ext); in hash_net4_uadt()
182 ret = adtfn(set, &e, &ext, &ext, flags); in hash_net4_uadt()
202 ret = adtfn(set, &e, &ext, &ext, flags); in hash_net4_uadt()
299 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_net6_kadt() local
309 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_net6_kadt()
318 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_net6_uadt() local
337 ip_set_get_extensions(set, tb, &ext); in hash_net6_uadt()
[all …]
Dip_set_hash_netport.c142 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netport4_kadt() local
154 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netport4_kadt()
164 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netport4_uadt() local
186 ip_set_get_extensions(set, tb, &ext); in hash_netport4_uadt()
224 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netport4_uadt()
256 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netport4_uadt()
362 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netport6_kadt() local
374 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netport6_kadt()
384 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netport6_uadt() local
408 ip_set_get_extensions(set, tb, &ext); in hash_netport6_uadt()
[all …]
Dip_set_hash_mac.c81 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_mac4_kadt() local
94 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_mac4_kadt()
103 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_mac4_uadt() local
118 ret = ip_set_get_extensions(set, tb, &ext); in hash_mac4_uadt()
125 return adtfn(set, &e, &ext, &ext, flags); in hash_mac4_uadt()
Dip_set_hash_ipportnet.c147 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipportnet4_kadt() local
160 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipportnet4_kadt()
170 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipportnet4_uadt() local
193 ip_set_get_extensions(set, tb, &ext); in hash_ipportnet4_uadt()
237 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipportnet4_uadt()
293 ret = adtfn(set, &e, &ext, &ext, flags); in hash_ipportnet4_uadt()
403 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_ipportnet6_kadt() local
416 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_ipportnet6_kadt()
426 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_ipportnet6_uadt() local
452 ip_set_get_extensions(set, tb, &ext); in hash_ipportnet6_uadt()
[all …]
Dip_set_hash_netnet.c143 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netnet4_kadt() local
155 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netnet4_kadt()
165 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netnet4_uadt() local
187 ip_set_get_extensions(set, tb, &ext); in hash_netnet4_uadt()
215 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netnet4_uadt()
258 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netnet4_uadt()
374 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netnet6_kadt() local
386 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netnet6_kadt()
395 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netnet6_uadt() local
416 ip_set_get_extensions(set, tb, &ext); in hash_netnet6_uadt()
[all …]
Dip_set_hash_netportnet.c154 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netportnet4_kadt() local
170 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netportnet4_kadt()
180 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netportnet4_uadt() local
205 ip_set_get_extensions(set, tb, &ext); in hash_netportnet4_uadt()
251 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netportnet4_uadt()
306 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netportnet4_uadt()
431 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netportnet6_kadt() local
447 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netportnet6_kadt()
457 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netportnet6_uadt() local
482 ip_set_get_extensions(set, tb, &ext); in hash_netportnet6_uadt()
[all …]
Dip_set_hash_netiface.c242 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netiface4_kadt() local
282 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netiface4_kadt()
292 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netiface4_uadt() local
312 ip_set_get_extensions(set, tb, &ext); in hash_netiface4_uadt()
343 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netiface4_uadt()
364 ret = adtfn(set, &e, &ext, &ext, flags); in hash_netiface4_uadt()
482 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in hash_netiface6_kadt() local
519 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_netiface6_kadt()
529 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in hash_netiface6_uadt() local
550 ip_set_get_extensions(set, tb, &ext); in hash_netiface6_uadt()
[all …]
Dip_set_bitmap_gen.h116 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, in mtype_test() argument
130 ip_set_update_counter(ext_counter(x, set), ext, mext, flags); in mtype_test()
132 ip_set_get_skbinfo(ext_skbinfo(x, set), ext, mext, flags); in mtype_test()
137 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, in mtype_add() argument
157 mtype_add_timeout(ext_timeout(x, set), e, ext, set, map, ret); in mtype_add()
159 ip_set_timeout_set(ext_timeout(x, set), ext->timeout); in mtype_add()
163 ip_set_init_counter(ext_counter(x, set), ext); in mtype_add()
165 ip_set_init_comment(ext_comment(x, set), ext); in mtype_add()
167 ip_set_init_skbinfo(ext_skbinfo(x, set), ext); in mtype_add()
172 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, in mtype_del() argument
Dip_set_bitmap_port.c109 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in bitmap_port_kadt() local
124 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in bitmap_port_kadt()
134 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in bitmap_port_uadt() local
155 ret = ip_set_get_extensions(set, tb, &ext); in bitmap_port_uadt()
161 return adtfn(set, &e, &ext, &ext, flags); in bitmap_port_uadt()
179 ret = adtfn(set, &e, &ext, &ext, flags); in bitmap_port_uadt()
Dip_set_bitmap_ipmac.c119 const struct ip_set_ext *ext, struct ip_set *set, in bitmap_ipmac_add_timeout() argument
122 u32 t = ext->timeout; in bitmap_ipmac_add_timeout()
208 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in bitmap_ipmac_kadt() local
227 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in bitmap_ipmac_kadt()
237 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in bitmap_ipmac_uadt() local
254 ip_set_get_extensions(set, tb, &ext); in bitmap_ipmac_uadt()
267 ret = adtfn(set, &e, &ext, &ext, flags); in bitmap_ipmac_uadt()
Dip_set_bitmap_ip.c117 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set); in bitmap_ip_kadt() local
126 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in bitmap_ip_kadt()
137 struct ip_set_ext ext = IP_SET_INIT_UEXT(set); in bitmap_ip_uadt() local
153 ip_set_get_extensions(set, tb, &ext); in bitmap_ip_uadt()
162 return adtfn(set, &e, &ext, &ext, flags); in bitmap_ip_uadt()
188 ret = adtfn(set, &e, &ext, &ext, flags); in bitmap_ip_uadt()
Dip_set_hash_gen.h623 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, in mtype_add() argument
712 ip_set_timeout_set(ext_timeout(data, set), ext->timeout); in mtype_add()
714 ip_set_init_counter(ext_counter(data, set), ext); in mtype_add()
716 ip_set_init_comment(ext_comment(data, set), ext); in mtype_add()
718 ip_set_init_skbinfo(ext_skbinfo(data, set), ext); in mtype_add()
729 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, in mtype_del() argument
790 mtype_data_match(struct mtype_elem *data, const struct ip_set_ext *ext, in mtype_data_match() argument
795 ext, mext, flags); in mtype_data_match()
798 ext, mext, flags); in mtype_data_match()
807 const struct ip_set_ext *ext, in mtype_test_cidrs() argument
[all …]
Dip_set_core.c389 struct ip_set_ext *ext) in ip_set_get_extensions() argument
395 ext->timeout = ip_set_timeout_uget(tb[IPSET_ATTR_TIMEOUT]); in ip_set_get_extensions()
401 ext->bytes = be64_to_cpu(nla_get_be64( in ip_set_get_extensions()
404 ext->packets = be64_to_cpu(nla_get_be64( in ip_set_get_extensions()
410 ext->comment = ip_set_comment_uget(tb[IPSET_ATTR_COMMENT]); in ip_set_get_extensions()
416 ext->skbmark = fullmark >> 32; in ip_set_get_extensions()
417 ext->skbmarkmask = fullmark & 0xffffffff; in ip_set_get_extensions()
422 ext->skbprio = be32_to_cpu(nla_get_be32( in ip_set_get_extensions()
428 ext->skbqueue = be16_to_cpu(nla_get_be16( in ip_set_get_extensions()
/linux-4.1.27/drivers/hid/
Dhid-wiimote-modules.c827 static void wiimod_nunchuk_in_ext(struct wiimote_data *wdata, const __u8 *ext) in wiimod_nunchuk_in_ext() argument
861 bx = ext[0]; in wiimod_nunchuk_in_ext()
862 by = ext[1]; in wiimod_nunchuk_in_ext()
866 x = ext[2] << 2; in wiimod_nunchuk_in_ext()
867 y = ext[3] << 2; in wiimod_nunchuk_in_ext()
868 z = ext[4] << 2; in wiimod_nunchuk_in_ext()
871 x |= (ext[5] >> 3) & 0x02; in wiimod_nunchuk_in_ext()
872 y |= (ext[5] >> 4) & 0x02; in wiimod_nunchuk_in_ext()
874 z |= (ext[5] >> 5) & 0x06; in wiimod_nunchuk_in_ext()
876 x |= (ext[5] >> 2) & 0x03; in wiimod_nunchuk_in_ext()
[all …]
Dhid-wiimote-core.c200 bool ext; in select_drm() local
202 ext = (wdata->state.flags & WIIPROTO_FLAG_EXT_USED) || in select_drm()
207 if (ext) in select_drm()
230 if (ext) in select_drm()
235 if (ext) in select_drm()
715 static void wiimote_ext_load(struct wiimote_data *wdata, unsigned int ext) in wiimote_ext_load() argument
721 ops = wiimod_ext_table[ext]; in wiimote_ext_load()
726 ext = WIIMOTE_EXT_UNKNOWN; in wiimote_ext_load()
730 wdata->state.exttype = ext; in wiimote_ext_load()
861 bool ext; in wiimote_init_detect() local
[all …]
/linux-4.1.27/drivers/net/wireless/ipw2x00/
Dlibipw_wx.c524 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in libipw_wx_set_encodeext() local
543 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) { in libipw_wx_set_encodeext()
548 if (idx != 0 && ext->alg != IW_ENCODE_ALG_WEP) in libipw_wx_set_encodeext()
558 ext->alg == IW_ENCODE_ALG_NONE) { in libipw_wx_set_encodeext()
583 switch (ext->alg) { in libipw_wx_set_encodeext()
598 dev->name, ext->alg); in libipw_wx_set_encodeext()
610 dev->name, ext->alg); in libipw_wx_set_encodeext()
636 if (ext->key_len > 0 && (*crypt)->ops->set_key && in libipw_wx_set_encodeext()
637 (*crypt)->ops->set_key(ext->key, ext->key_len, ext->rx_seq, in libipw_wx_set_encodeext()
645 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in libipw_wx_set_encodeext()
[all …]
/linux-4.1.27/sound/core/seq/
Dseq_memory.c76 return event->data.ext.len & ~SNDRV_SEQ_EXT_MASK; in get_var_len()
88 if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) { in snd_seq_dump_var_event()
90 char __user *curptr = (char __force __user *)event->data.ext.ptr; in snd_seq_dump_var_event()
105 if (!(event->data.ext.len & SNDRV_SEQ_EXT_CHAINED)) in snd_seq_dump_var_event()
106 return func(private_data, event->data.ext.ptr, len); in snd_seq_dump_var_event()
108 cell = (struct snd_seq_event_cell *)event->data.ext.ptr; in snd_seq_dump_var_event()
158 if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) { in snd_seq_expand_var_event()
161 if (copy_from_user(buf, (void __force __user *)event->data.ext.ptr, len)) in snd_seq_expand_var_event()
200 if (cell->event.data.ext.len & SNDRV_SEQ_EXT_CHAINED) { in snd_seq_cell_free()
202 curp = cell->event.data.ext.ptr; in snd_seq_cell_free()
[all …]
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_wx.c515 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in ieee80211_wx_set_encode_ext() local
534 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) { in ieee80211_wx_set_encode_ext()
542 if (idx != 0 && ext->alg != IW_ENCODE_ALG_WEP) in ieee80211_wx_set_encode_ext()
554 ext->alg == IW_ENCODE_ALG_NONE) { in ieee80211_wx_set_encode_ext()
576 switch (ext->alg) { in ieee80211_wx_set_encode_ext()
591 dev->name, ext->alg); in ieee80211_wx_set_encode_ext()
604 dev->name, ext->alg); in ieee80211_wx_set_encode_ext()
605 printk("========>unknown crypto alg %d\n", ext->alg); in ieee80211_wx_set_encode_ext()
632 if (ext->key_len > 0 && (*crypt)->ops->set_key && in ieee80211_wx_set_encode_ext()
633 (*crypt)->ops->set_key(ext->key, ext->key_len, ext->rx_seq, in ieee80211_wx_set_encode_ext()
[all …]
/linux-4.1.27/sound/pci/ac97/
Dac97_proc.c110 unsigned short val, tmp, ext, mext; in snd_ac97_proc_read_main() local
189 ext = snd_ac97_read(ac97, AC97_EXTENDED_ID); in snd_ac97_proc_read_main()
190 if (ext == 0) in snd_ac97_proc_read_main()
194 (ext & AC97_EI_ADDR_MASK) >> AC97_EI_ADDR_SHIFT, in snd_ac97_proc_read_main()
195 (ext & AC97_EI_REV_MASK) >> AC97_EI_REV_SHIFT, in snd_ac97_proc_read_main()
196 ext & AC97_EI_AMAP ? " AMAP" : "", in snd_ac97_proc_read_main()
197 ext & AC97_EI_LDAC ? " LDAC" : "", in snd_ac97_proc_read_main()
198 ext & AC97_EI_SDAC ? " SDAC" : "", in snd_ac97_proc_read_main()
199 ext & AC97_EI_CDAC ? " CDAC" : "", in snd_ac97_proc_read_main()
200 (ext & AC97_EI_DACS_SLOT_MASK) >> AC97_EI_DACS_SLOT_SHIFT, in snd_ac97_proc_read_main()
[all …]
/linux-4.1.27/scripts/
Dpatch-kernel108 ext=".gz"
112 ext=".bz"
116 ext=".bz2"
120 ext=".xz"
124 ext=".zip"
128 ext=".Z"
132 ext=""
148 if $uncomp ${patchdir}/$1${ext} | patch -p1 -s -N -E -d $sourcedir
170 if $uncomp ${patchdir}/"$1"${ext} | patch -p1 -Rs -N -E -d $sourcedir
DMakefile.modsign22 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
24 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
DMakefile.modinst30 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
32 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
Dsign-file220 my $ext = asn1_extract($extensions->[1], $UNIV | $CONS | $SEQUENCE);
221 my $x_oid = asn1_extract($ext->[1], $UNIV | $OBJ_ID);
222 my $x_crit = asn1_extract($ext->[1], $UNIV | $BOOLEAN, 1);
223 my $x_val = asn1_extract($ext->[1], $UNIV | $OCTET_STRING);
Drecordmcount.pl387 my $ext;
399 $ext = $2;
402 $ext = "";
/linux-4.1.27/fs/affs/
Dfile.c18 static struct buffer_head *affs_get_extblock_slow(struct inode *inode, u32 ext);
117 affs_alloc_extblock(struct inode *inode, struct buffer_head *bh, u32 ext) in affs_alloc_extblock() argument
155 affs_get_extblock(struct inode *inode, u32 ext) in affs_get_extblock() argument
159 if (ext == AFFS_I(inode)->i_ext_last) in affs_get_extblock()
163 bh = affs_get_extblock_slow(inode, ext); in affs_get_extblock()
169 affs_get_extblock_slow(struct inode *inode, u32 ext) in affs_get_extblock_slow() argument
177 if (ext == AFFS_I(inode)->i_ext_last + 1) { in affs_get_extblock_slow()
181 if (ext < AFFS_I(inode)->i_extcnt) in affs_get_extblock_slow()
183 BUG_ON(ext > AFFS_I(inode)->i_extcnt); in affs_get_extblock_slow()
184 bh = affs_alloc_extblock(inode, bh, ext); in affs_get_extblock_slow()
[all …]
/linux-4.1.27/include/linux/netfilter/ipset/
Dip_set.h85 void (*destroy)(void *ext);
134 const struct ip_set_ext *ext,
143 struct ip_set_ext ext; /* Extensions */ member
311 const struct ip_set_ext *ext, in ip_set_update_counter() argument
314 if (ext->packets != ULLONG_MAX && in ip_set_update_counter()
316 ip_set_add_bytes(ext->bytes, counter); in ip_set_update_counter()
317 ip_set_add_packets(ext->packets, counter); in ip_set_update_counter()
327 const struct ip_set_ext *ext, in ip_set_get_skbinfo() argument
354 const struct ip_set_ext *ext) in ip_set_init_skbinfo() argument
356 skbinfo->skbmark = ext->skbmark; in ip_set_init_skbinfo()
[all …]
Dip_set_comment.h21 const struct ip_set_ext *ext) in ip_set_init_comment() argument
23 size_t len = ext->comment ? strlen(ext->comment) : 0; in ip_set_init_comment()
36 strlcpy(comment->str, ext->comment, len + 1); in ip_set_init_comment()
Dip_set_timeout.h27 ((opt)->ext.timeout != IPSET_NO_TIMEOUT ? (opt)->ext.timeout : (set)->timeout)
/linux-4.1.27/drivers/staging/rtl8192e/
Drtllib_wx.c531 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in rtllib_wx_set_encode_ext() local
549 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) { in rtllib_wx_set_encode_ext()
554 if (idx != 0 && ext->alg != IW_ENCODE_ALG_WEP) in rtllib_wx_set_encode_ext()
564 ext->alg == IW_ENCODE_ALG_NONE) { in rtllib_wx_set_encode_ext()
581 switch (ext->alg) { in rtllib_wx_set_encode_ext()
596 dev->name, ext->alg); in rtllib_wx_set_encode_ext()
612 netdev_info(dev, "========>unknown crypto alg %d\n", ext->alg); in rtllib_wx_set_encode_ext()
640 if (ext->key_len > 0 && (*crypt)->ops->set_key && in rtllib_wx_set_encode_ext()
641 (*crypt)->ops->set_key(ext->key, ext->key_len, ext->rx_seq, in rtllib_wx_set_encode_ext()
647 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in rtllib_wx_set_encode_ext()
[all …]
/linux-4.1.27/drivers/net/ethernet/altera/
Daltera_tse_ethtool.c99 u64 ext; in tse_fill_stats() local
111 ext = (u64) csrrd32(priv->mac_dev, in tse_fill_stats()
114 ext |= csrrd32(priv->mac_dev, in tse_fill_stats()
116 buf[4] = ext; in tse_fill_stats()
119 ext = (u64) csrrd32(priv->mac_dev, in tse_fill_stats()
122 ext |= csrrd32(priv->mac_dev, in tse_fill_stats()
124 buf[5] = ext; in tse_fill_stats()
152 ext = (u64) csrrd32(priv->mac_dev, in tse_fill_stats()
154 ext |= csrrd32(priv->mac_dev, in tse_fill_stats()
156 buf[18] = ext; in tse_fill_stats()
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
Dinterval_tree.c581 struct interval_node_extent *ext) in interval_may_overlap() argument
583 return (ext->start <= node->in_max_high && in interval_may_overlap()
584 ext->end >= interval_low(node)); in interval_may_overlap()
609 struct interval_node_extent *ext, in interval_search() argument
616 LASSERT(ext != NULL); in interval_search()
620 if (ext->end < interval_low(node)) { in interval_search()
625 } else if (interval_may_overlap(node, ext)) { in interval_search()
626 if (extent_overlapped(ext, &node->in_extent)) { in interval_search()
657 if (parent == NULL || !interval_may_overlap(parent, ext)) in interval_search()
673 struct interval_node_extent *ext) in interval_is_overlapped() argument
[all …]
/linux-4.1.27/net/ipv4/
Dipconfig.c887 static void __init ic_do_bootp_ext(u8 *ext) in ic_do_bootp_ext() argument
896 printk("DHCP/BOOTP: Got extension %d:",*ext); in ic_do_bootp_ext()
897 for (c=ext+2; c<ext+2+ext[1]; c++) in ic_do_bootp_ext()
902 switch (*ext++) { in ic_do_bootp_ext()
905 memcpy(&ic_netmask, ext+1, 4); in ic_do_bootp_ext()
909 memcpy(&ic_gateway, ext+1, 4); in ic_do_bootp_ext()
912 servers= *ext/4; in ic_do_bootp_ext()
917 memcpy(&ic_nameservers[i], ext+1+4*i, 4); in ic_do_bootp_ext()
921 ic_bootp_string(utsname()->nodename, ext+1, *ext, in ic_do_bootp_ext()
926 ic_bootp_string(ic_domain, ext+1, *ext, sizeof(ic_domain)); in ic_do_bootp_ext()
[all …]
Dtcp_dctcp.c280 static size_t dctcp_get_info(struct sock *sk, u32 ext, int *attr, in dctcp_get_info() argument
288 if (ext & (1 << (INET_DIAG_DCTCPINFO - 1)) || in dctcp_get_info()
289 ext & (1 << (INET_DIAG_VEGASINFO - 1))) { in dctcp_get_info()
Dtcp_vegas.h22 size_t tcp_vegas_get_info(struct sock *sk, u32 ext, int *attr,
Dtcp_vegas.c289 size_t tcp_vegas_get_info(struct sock *sk, u32 ext, int *attr, in tcp_vegas_get_info() argument
294 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) { in tcp_vegas_get_info()
Dinet_diag.c116 int ext = req->idiag_ext; in inet_sk_diag_fill() local
144 if (ext & (1 << (INET_DIAG_TOS - 1))) in inet_sk_diag_fill()
150 if (ext & (1 << (INET_DIAG_TCLASS - 1))) in inet_sk_diag_fill()
160 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) { in inet_sk_diag_fill()
172 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1))) in inet_sk_diag_fill()
203 if (ext & (1 << (INET_DIAG_INFO - 1))) { in inet_sk_diag_fill()
212 if (ext & (1 << (INET_DIAG_CONG - 1))) { in inet_sk_diag_fill()
234 sz = ca_ops->get_info(sk, ext, &attr, &info); in inet_sk_diag_fill()
Dtcp_westwood.c259 static size_t tcp_westwood_info(struct sock *sk, u32 ext, int *attr, in tcp_westwood_info() argument
264 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) { in tcp_westwood_info()
Dtcp_illinois.c303 static size_t tcp_illinois_info(struct sock *sk, u32 ext, int *attr, in tcp_illinois_info() argument
308 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) { in tcp_illinois_info()
/linux-4.1.27/arch/x86/tools/
Dgen-insn-attr-x86.awk285 ext = null
295 ext = $(i++)
310 if (match(ext, force64_expr))
322 if (match(ext, vexonly_expr))
324 else if (match(ext, vexok_expr) || match(opcode, vexok_opcode_expr))
328 if (match(ext, prefix_expr)) {
336 if (match(ext, lprefix1_expr)) {
340 if (match(ext, lprefix2_expr)) {
344 if (match(ext, lprefix3_expr)) {
348 if (!match(ext, lprefix_expr)){
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dtps65910.txt66 - ti,regulator-ext-sleep-control: enable external sleep
111 ti,regulator-ext-sleep-control = <0>;
120 ti,regulator-ext-sleep-control = <4>;
129 ti,regulator-ext-sleep-control = <0>;
138 ti,regulator-ext-sleep-control = <1>;
145 ti,regulator-ext-sleep-control = <0>;
152 ti,regulator-ext-sleep-control = <0>;
159 ti,regulator-ext-sleep-control = <0>;
167 ti,regulator-ext-sleep-control = <0>;
174 ti,regulator-ext-sleep-control = <0>;
[all …]
Das3722.txt109 ams,ext-control: External control of the rail. The option of
180 ams,ext-control = <2>;
188 ams,ext-control = <1>;
Ds2mps11.txt63 - samsung,ext-control-gpios: GPIO specifier for one GPIO
70 samsung,ext-control-gpios = <&gpk0 2 0>;
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt10 __u16 ext; /* External flags */
46 @ext - external flags. Used by different commands to specify some extra arguments
64 @ext - length of the path to object.
77 @ext - object path length.
90 @ext - 0
96 @ext - length of the path to object.
105 @ext - length of the path to object.
118 @ext - size of the "object_path" above.
126 @ext - transaction flags. Unused at the moment.
136 @ext - open flags (O_RDWR and so on).
[all …]
/linux-4.1.27/arch/arm64/crypto/
Dghash-ce-core.S35 ext SHASH2.16b, SHASH.16b, SHASH.16b, #8
50 ext T2.16b, XL.16b, XL.16b, #8
51 ext IN1.16b, T1.16b, T1.16b, #8
60 ext T1.16b, XL.16b, XH.16b, #8
70 ext T2.16b, XL.16b, XL.16b, #8
Daes-ce-ccm-core.S30 ext v1.16b, v1.16b, v1.16b, #1 /* rotate in the input bytes */
74 ext v0.16b, v0.16b, v0.16b, #1 /* rotate out the mac bytes */
78 9: ext v1.16b, v1.16b, v1.16b, #1
203 ext v0.16b, v0.16b, v0.16b, #1 /* shift out mac byte */
204 ext v1.16b, v1.16b, v1.16b, #1 /* shift out ctr byte */
/linux-4.1.27/drivers/net/wireless/orinoco/
Dwext.c726 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in orinoco_ioctl_set_encodeext() local
727 int idx, alg = ext->alg, set_key = 1; in orinoco_ioctl_set_encodeext()
751 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in orinoco_ioctl_set_encodeext()
754 (ext->key_len > 0)) ? 1 : 0; in orinoco_ioctl_set_encodeext()
767 if (ext->key_len <= 0) in orinoco_ioctl_set_encodeext()
772 ext->key, ext->key_len, NULL, 0); in orinoco_ioctl_set_encodeext()
780 (ext->key_len > sizeof(struct orinoco_tkip_key))) in orinoco_ioctl_set_encodeext()
785 if (ext->ext_flags & IW_ENCODE_EXT_RX_SEQ_VALID) in orinoco_ioctl_set_encodeext()
786 tkip_iv = &ext->rx_seq[0]; in orinoco_ioctl_set_encodeext()
789 ext->key, ext->key_len, tkip_iv, in orinoco_ioctl_set_encodeext()
[all …]
/linux-4.1.27/drivers/block/drbd/
Ddrbd_actlog.c669 struct bm_extent *ext = lc_entry(e, struct bm_extent, lce); in update_rs_extent() local
670 if (ext->lce.lc_number == enr) { in update_rs_extent()
672 ext->rs_left -= count; in update_rs_extent()
674 ext->rs_left += count; in update_rs_extent()
676 ext->rs_failed += count; in update_rs_extent()
677 if (ext->rs_left < ext->rs_failed) { in update_rs_extent()
680 ext->lce.lc_number, ext->rs_left, in update_rs_extent()
681 ext->rs_failed, count, in update_rs_extent()
690 ext->rs_left = drbd_bm_e_weight(device, enr); in update_rs_extent()
700 if (ext->flags != 0) { in update_rs_extent()
[all …]
/linux-4.1.27/kernel/gcov/
Dfs.c303 static char *link_target(const char *dir, const char *path, const char *ext) in link_target() argument
316 target = kasprintf(GFP_KERNEL, "%s/%s.%s", dir, copy, ext); in link_target()
318 target = kasprintf(GFP_KERNEL, "%s.%s", copy, ext); in link_target()
330 static char *get_link_target(const char *filename, const struct gcov_link *ext) in get_link_target() argument
337 if (ext->dir == SRC_TREE) in get_link_target()
338 result = link_target(srctree, rel, ext->ext); in get_link_target()
340 result = link_target(objtree, rel, ext->ext); in get_link_target()
343 result = link_target(NULL, filename, ext->ext); in get_link_target()
373 for (num = 0; gcov_link[num].ext; num++) in add_links()
477 for (i = 0; gcov_link[i].ext; i++) in remove_links()
Dgcov.h81 const char *ext; member
/linux-4.1.27/fs/f2fs/
Ddata.c275 if (fi->ext.len == 0) { in lookup_extent_info()
282 start_fofs = fi->ext.fofs; in lookup_extent_info()
283 end_fofs = fi->ext.fofs + fi->ext.len - 1; in lookup_extent_info()
284 start_blkaddr = fi->ext.blk; in lookup_extent_info()
287 *ei = fi->ext; in lookup_extent_info()
306 start_fofs = fi->ext.fofs; in update_extent_info()
307 end_fofs = fi->ext.fofs + fi->ext.len - 1; in update_extent_info()
308 start_blkaddr = fi->ext.blk; in update_extent_info()
309 end_blkaddr = fi->ext.blk + fi->ext.len - 1; in update_extent_info()
312 if (fi->ext.len == 1 && fofs == start_fofs) in update_extent_info()
[all …]
Df2fs.h342 struct extent_info ext; /* in-memory extent cache entry */ member
351 static inline void get_extent_info(struct extent_info *ext, in get_extent_info() argument
354 ext->fofs = le32_to_cpu(i_ext.fofs); in get_extent_info()
355 ext->blk = le32_to_cpu(i_ext.blk); in get_extent_info()
356 ext->len = le32_to_cpu(i_ext.len); in get_extent_info()
359 static inline void set_raw_extent(struct extent_info *ext, in set_raw_extent() argument
362 i_ext->fofs = cpu_to_le32(ext->fofs); in set_raw_extent()
363 i_ext->blk = cpu_to_le32(ext->blk); in set_raw_extent()
364 i_ext->len = cpu_to_le32(ext->len); in set_raw_extent()
/linux-4.1.27/include/uapi/linux/
Dphonet.h80 } ext; member
87 #define pn_e_submsg_id pn_msg_u.ext.pn_e_submsg_id
88 #define pn_e_res_id pn_msg_u.ext.pn_e_res_id
90 #define pn_e_data pn_msg_u.ext.pn_e_data
/linux-4.1.27/arch/s390/kvm/
Dinterrupt.c303 struct kvm_s390_ext_info ext; in __deliver_pfault_init() local
307 ext = li->irq.ext; in __deliver_pfault_init()
309 li->irq.ext.ext_params2 = 0; in __deliver_pfault_init()
313 0, ext.ext_params2); in __deliver_pfault_init()
316 0, ext.ext_params2); in __deliver_pfault_init()
324 rc |= put_guest_lc(vcpu, ext.ext_params2, (u64 *) __LC_EXT_PARAMS2); in __deliver_pfault_init()
610 struct kvm_s390_ext_info ext; in __deliver_service() local
618 ext = fi->srv_signal; in __deliver_service()
619 memset(&fi->srv_signal, 0, sizeof(ext)); in __deliver_service()
624 ext.ext_params); in __deliver_service()
[all …]
/linux-4.1.27/sound/drivers/opl3/
Dopl3_synth.c254 const unsigned char *ext, in snd_opl3_load_patch() argument
292 if (ext) { in snd_opl3_load_patch()
293 patch->inst.echo_delay = ext[0]; in snd_opl3_load_patch()
294 patch->inst.echo_atten = ext[1]; in snd_opl3_load_patch()
295 patch->inst.chorus_spread = ext[2]; in snd_opl3_load_patch()
296 patch->inst.trnsps = ext[3]; in snd_opl3_load_patch()
297 patch->inst.fix_dur = ext[4]; in snd_opl3_load_patch()
298 patch->inst.modes = ext[5]; in snd_opl3_load_patch()
299 patch->inst.fix_key = ext[6]; in snd_opl3_load_patch()
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
Dintr_vect_defs.h119 unsigned int ext : 1; member
157 unsigned int ext : 1; member
194 unsigned int ext : 1; member
201 unsigned int ext : 1; member
/linux-4.1.27/kernel/power/
Dswap.c126 struct swsusp_extent *ext; in swsusp_extents_insert() local
130 ext = rb_entry(*new, struct swsusp_extent, node); in swsusp_extents_insert()
132 if (swap_offset < ext->start) { in swsusp_extents_insert()
134 if (swap_offset == ext->start - 1) { in swsusp_extents_insert()
135 ext->start--; in swsusp_extents_insert()
139 } else if (swap_offset > ext->end) { in swsusp_extents_insert()
141 if (swap_offset == ext->end + 1) { in swsusp_extents_insert()
142 ext->end++; in swsusp_extents_insert()
152 ext = kzalloc(sizeof(struct swsusp_extent), GFP_KERNEL); in swsusp_extents_insert()
153 if (!ext) in swsusp_extents_insert()
[all …]
Dsnapshot.c500 struct mem_extent *ext, *aux; in free_mem_extents() local
502 list_for_each_entry_safe(ext, aux, list, hook) { in free_mem_extents()
503 list_del(&ext->hook); in free_mem_extents()
504 kfree(ext); in free_mem_extents()
522 struct mem_extent *ext, *cur, *aux; in create_mem_extents() local
527 list_for_each_entry(ext, list, hook) in create_mem_extents()
528 if (zone_start <= ext->end) in create_mem_extents()
531 if (&ext->hook == list || zone_end < ext->start) { in create_mem_extents()
542 list_add_tail(&new_ext->hook, &ext->hook); in create_mem_extents()
547 if (zone_start < ext->start) in create_mem_extents()
[all …]
/linux-4.1.27/tools/perf/util/
Ddso.c157 bool is_supported_compression(const char *ext) in is_supported_compression() argument
162 if (!strcmp(ext, compressions[i].fmt)) in is_supported_compression()
178 bool decompress_to_file(const char *ext, const char *filename, int output_fd) in decompress_to_file() argument
183 if (!strcmp(ext, compressions[i].fmt)) in decompress_to_file()
216 const char *ext = strrchr(path, '.'); in __kmod_path__parse() local
222 if (ext == NULL) { in __kmod_path__parse()
230 if (is_supported_compression(ext + 1)) { in __kmod_path__parse()
232 ext -= 3; in __kmod_path__parse()
236 if (ext > name) in __kmod_path__parse()
237 m->kmod = !strncmp(ext, ".ko", 3); in __kmod_path__parse()
[all …]
Ddso.h218 bool is_supported_compression(const char *ext);
220 bool decompress_to_file(const char *ext, const char *filename, int output_fd);
225 char *ext; member
Dutil.h195 static inline int has_extension(const char *filename, const char *ext) in has_extension() argument
198 size_t extlen = strlen(ext); in has_extension()
200 return len > extlen && !memcmp(filename + len - extlen, ext, extlen); in has_extension()
/linux-4.1.27/arch/s390/kernel/
Dsclp.S14 LC_EXT_NEW_PSW = 0x58 # addr of ext int handler
15 LC_EXT_NEW_PSW_64 = 0x1b0 # addr of ext int handler 64 bit
16 LC_EXT_INT_PARAM = 0x80 # addr of ext int parameter
17 LC_EXT_INT_CODE = 0x86 # addr of ext int code
50 lhi %r6,0x0200 # cr mask for ext int (cr0.54)
88 .long 0, 0, 0, 0 # old ext int PSW
90 .long 0x00080000, 0x80000000+.LwaitS1 # PSW to handle ext int
92 .quad 0, .LwaitS1 # PSW to handle ext int, 64 bit
94 .long 0x010a0000, 0x00000000+.LloopS1 # PSW to wait for ext int
Dsysinfo.c137 struct sysinfo_1_2_2_extension *ext; in stsi_1_2_2() local
142 ext = (struct sysinfo_1_2_2_extension *) in stsi_1_2_2()
159 seq_printf(m, " %u", ext->alt_capability); in stsi_1_2_2()
169 seq_printf(m, " %u", ext->alt_adjustment[i-2]); in stsi_1_2_2()
/linux-4.1.27/arch/arm64/kvm/
Dreset.c59 int kvm_arch_dev_ioctl_check_extension(long ext) in kvm_arch_dev_ioctl_check_extension() argument
63 switch (ext) { in kvm_arch_dev_ioctl_check_extension()
/linux-4.1.27/drivers/video/fbdev/riva/
Dfbdev.c600 par->riva.UnloadStateExt(&par->riva, &regs->ext); in riva_save_state()
634 RIVA_HW_STATE *state = &regs->ext; in riva_load_state()
755 newmode.ext.screen = SetBitField(hBlankEnd,6:6,4:4) in riva_load_video_mode()
760 newmode.ext.horiz = SetBitField(hTotal,8:8,0:0) in riva_load_video_mode()
764 newmode.ext.extra = SetBitField(vTotal,11:11,0:0) in riva_load_video_mode()
771 newmode.ext.interlace = Set8Bits(tmp); in riva_load_video_mode()
772 newmode.ext.horiz |= SetBitField(tmp, 8:8,4:4); in riva_load_video_mode()
774 newmode.ext.interlace = 0xff; /* interlace off */ in riva_load_video_mode()
788 rc = CalcStateExt(&par->riva, &newmode.ext, bpp, width, in riva_load_video_mode()
793 newmode.ext.scale = NV_RD32(par->riva.PRAMDAC, 0x00000848) & in riva_load_video_mode()
[all …]
Drivafb.h31 RIVA_HW_STATE ext; member
/linux-4.1.27/Documentation/devicetree/bindings/thermal/
Dexynos-thermal.txt12 "samsung,exynos5420-tmu-ext-triminfo" for TMU channels 2, 3 and 4
25 Use "samsung,exynos5420-tmu-ext-triminfo" in cases, there is a misplaced
86 compatible = "samsung,exynos5420-tmu-ext-triminfo";
95 compatible = "samsung,exynos5420-tmu-ext-triminfo";
104 compatible = "samsung,exynos5420-tmu-ext-triminfo";
/linux-4.1.27/scripts/kconfig/lxdialog/
Dcheck-lxdialog.sh9 for ext in so a dll.a dylib ; do
11 $cc -print-file-name=lib${lib}.${ext} | grep -q /
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Deukrea-tlv320.txt13 - fsl,mux-ext-port : The external port of the i.MX audio muxer.
25 fsl,mux-ext-port = <3>;
Dimx-audio-wm8962.txt29 - mux-ext-port : The external port of the i.MX audio muxer
52 mux-ext-port = <3>;
Dimx-audio-sgtl5000.txt37 - mux-ext-port : The external port of the i.MX audio muxer
55 mux-ext-port = <3>;
Dimx-audio-es8328.txt35 - mux-ext-port : The external port of the i.MX audio muxer (AUDMIX)
59 mux-ext-port = <3>;
Dnvidia,tegra-audio-wm8903.txt30 - nvidia,ext-mic-en-gpios : The GPIO that enables the external microphone
55 nvidia,ext-mic-en-gpios = <&gpio 185 0>; /* gpio PX1 */
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dtps65090.txt17 - ti,enable-ext-control: This is applicable for DCDC1, DCDC2 and DCDC3.
19 - "dcdc-ext-control-gpios: This is applicable for DCDC1, DCDC2 and DCDC3.
56 ti,enable-ext-control;
57 dcdc-ext-control-gpios = <&gpio 10 0>;
Das3722-regulator.txt32 ams,ext-control: External control of the rail. The option of
58 ams,ext-control = <2>;
66 ams,ext-control = <1>;
Ds5m8767-regulator.txt79 - s5m8767,pmic-ext-control-gpios: (optional) GPIO specifier for one
160 s5m8767,pmic-ext-control-gpios = <&gpk0 2 0>;
/linux-4.1.27/drivers/power/
Dabx500_chargalg.c978 struct power_supply *ext; in abx500_chargalg_get_ext_psy_data() local
986 ext = dev_get_drvdata(dev); in abx500_chargalg_get_ext_psy_data()
989 for (i = 0; i < ext->num_supplicants; i++) { in abx500_chargalg_get_ext_psy_data()
990 if (!strcmp(ext->supplied_to[i], psy->desc->name)) in abx500_chargalg_get_ext_psy_data()
1001 if (!power_supply_get_property(ext, POWER_SUPPLY_PROP_CAPACITY, &ret)) { in abx500_chargalg_get_ext_psy_data()
1007 for (j = 0; j < ext->desc->num_properties; j++) { in abx500_chargalg_get_ext_psy_data()
1009 prop = ext->desc->properties[j]; in abx500_chargalg_get_ext_psy_data()
1015 ext->desc->type == POWER_SUPPLY_TYPE_MAINS) in abx500_chargalg_get_ext_psy_data()
1016 di->ac_chg = psy_to_ux500_charger(ext); in abx500_chargalg_get_ext_psy_data()
1018 ext->desc->type == POWER_SUPPLY_TYPE_USB) in abx500_chargalg_get_ext_psy_data()
[all …]
Dab8500_btemp.c909 struct power_supply *ext; in ab8500_btemp_get_ext_psy_data() local
916 ext = dev_get_drvdata(dev); in ab8500_btemp_get_ext_psy_data()
923 for (i = 0; i < ext->num_supplicants; i++) { in ab8500_btemp_get_ext_psy_data()
924 if (!strcmp(ext->supplied_to[i], psy->desc->name)) in ab8500_btemp_get_ext_psy_data()
932 for (j = 0; j < ext->desc->num_properties; j++) { in ab8500_btemp_get_ext_psy_data()
934 prop = ext->desc->properties[j]; in ab8500_btemp_get_ext_psy_data()
936 if (power_supply_get_property(ext, prop, &ret)) in ab8500_btemp_get_ext_psy_data()
941 switch (ext->desc->type) { in ab8500_btemp_get_ext_psy_data()
Dab8500_fg.c2171 struct power_supply *ext; in ab8500_fg_get_ext_psy_data() local
2178 ext = dev_get_drvdata(dev); in ab8500_fg_get_ext_psy_data()
2185 for (i = 0; i < ext->num_supplicants; i++) { in ab8500_fg_get_ext_psy_data()
2186 if (!strcmp(ext->supplied_to[i], psy->desc->name)) in ab8500_fg_get_ext_psy_data()
2194 for (j = 0; j < ext->desc->num_properties; j++) { in ab8500_fg_get_ext_psy_data()
2196 prop = ext->desc->properties[j]; in ab8500_fg_get_ext_psy_data()
2198 if (power_supply_get_property(ext, prop, &ret)) in ab8500_fg_get_ext_psy_data()
2203 switch (ext->desc->type) { in ab8500_fg_get_ext_psy_data()
2242 switch (ext->desc->type) { in ab8500_fg_get_ext_psy_data()
2272 switch (ext->desc->type) { in ab8500_fg_get_ext_psy_data()
/linux-4.1.27/drivers/s390/scsi/
Dzfcp_fc.h269 sense += fcp_rsp->ext.fr_rsp_len; in zfcp_fc_eval_fcp_rsp()
270 sense_len = min(fcp_rsp->ext.fr_sns_len, in zfcp_fc_eval_fcp_rsp()
276 resid = fcp_rsp->ext.fr_resid; in zfcp_fc_eval_fcp_rsp()
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dcpsw-phy-sel.txt13 -rmii-clock-ext : If present, the driver will configure the RMII
29 rmii-clock-ext;
Ddavicom-dm9000.txt13 - davicom,ext-phy : Use external PHY
Dsti-dwmac.txt21 - st,ext-phyclk: valid only for RMII where PHY can generate 50MHz clock or
/linux-4.1.27/arch/arm/include/asm/
Dproc-fns.h71 void (*set_pte_ext)(pte_t *ptep, pte_t pte, unsigned int ext);
89 extern void cpu_set_pte_ext(pte_t *ptep, pte_t pte, unsigned int ext);
Dpgtable-2level.h185 #define set_pte_ext(ptep,pte,ext) cpu_set_pte_ext(ptep,pte,ext) argument
Dpgtable.h244 unsigned long ext = 0; in set_pte_at() local
249 ext |= PTE_EXT_NG; in set_pte_at()
252 set_pte_ext(ptep, pteval, ext); in set_pte_at()
Dpgtable-3level.h206 #define set_pte_ext(ptep,pte,ext) cpu_set_pte_ext(ptep,__pte(pte_val(pte)|(ext))) argument
Dkvm_host.h216 static inline int kvm_arch_dev_ioctl_check_extension(long ext) in kvm_arch_dev_ioctl_check_extension() argument
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dst,sti-irq-syscfg.txt19 - st,invert-ext : External IRQs can be inverted at will. This property inverts
34 st,invert-ext = <(ST_IRQ_SYSCFG_EXT_1_INV | ST_IRQ_SYSCFG_EXT_3_INV)>;
/linux-4.1.27/fs/efs/
Dinode.c205 efs_extent ext, *exts; in efs_map_block() local
291 extent_copy(&(exts[ioffset]), &ext); in efs_map_block()
293 if (ext.cooked.ex_magic != 0) { in efs_map_block()
300 if ((result = efs_extent_check(&ext, block, sb))) { in efs_map_block()
/linux-4.1.27/arch/arm/boot/dts/
Dexynos4210.dtsi208 samsung,mainscaler-ext;
214 samsung,mainscaler-ext;
220 samsung,mainscaler-ext;
227 samsung,mainscaler-ext;
Dexynos4x12.dtsi179 samsung,mainscaler-ext;
187 samsung,mainscaler-ext;
195 samsung,mainscaler-ext;
205 samsung,mainscaler-ext;
Dste-snowball.dts342 ext_regulators: ab8500-ext-regulators {
344 regulator-name = "ab8500-ext-supply1";
348 regulator-name = "ab8500-ext-supply2";
352 regulator-name = "ab8500-ext-supply3";
Dstihxxx-b2120.dtsi66 st,osc-force-ext;
Ds5pv210-pinctrl.dtsi726 eint0: ext-int0 {
733 eint8: ext-int8 {
740 eint15: ext-int15 {
747 eint16: ext-int16 {
754 eint31: ext-int31 {
Dexynos4210-pinctrl.dtsi766 eint0: ext-int0 {
773 eint8: ext-int8 {
780 eint15: ext-int15 {
787 eint16: ext-int16 {
794 eint31: ext-int31 {
Dam335x-chiliboard.dts76 rmii-clock-ext;
Dexynos4x12-pinctrl.dtsi833 eint0: ext-int0 {
840 eint8: ext-int8 {
847 eint15: ext-int15 {
854 eint16: ext-int16 {
861 eint31: ext-int31 {
Dimx53-voipac-bsb.dts25 mux-ext-port = <5>;
/linux-4.1.27/drivers/staging/rtl8712/
Drtl871x_ioctl_linux.c954 char *ext; in r871x_wx_set_priv() local
959 ext = memdup_user(dwrq->pointer, len); in r871x_wx_set_priv()
960 if (IS_ERR(ext)) in r871x_wx_set_priv()
961 return PTR_ERR(ext); in r871x_wx_set_priv()
963 if (0 == strcasecmp(ext, "RSSI")) { in r871x_wx_set_priv()
971 sprintf(ext, "%s rssi %d", in r871x_wx_set_priv()
978 sprintf(ext, "OK"); in r871x_wx_set_priv()
980 } else if (0 == strcasecmp(ext, "LINKSPEED")) { in r871x_wx_set_priv()
992 sprintf(ext, "LINKSPEED %d", mbps); in r871x_wx_set_priv()
993 } else if (0 == strcasecmp(ext, "MACADDR")) { in r871x_wx_set_priv()
[all …]
/linux-4.1.27/drivers/iommu/
Damd_iommu_init.c113 u32 ext; member
890 PCI_BUS_NUM(e->ext >> 8), in init_iommu_from_acpi()
891 PCI_SLOT(e->ext >> 8), in init_iommu_from_acpi()
892 PCI_FUNC(e->ext >> 8)); in init_iommu_from_acpi()
895 devid_to = e->ext >> 8; in init_iommu_from_acpi()
909 PCI_BUS_NUM(e->ext >> 8), in init_iommu_from_acpi()
910 PCI_SLOT(e->ext >> 8), in init_iommu_from_acpi()
911 PCI_FUNC(e->ext >> 8)); in init_iommu_from_acpi()
915 devid_to = e->ext >> 8; in init_iommu_from_acpi()
926 e->flags, e->ext); in init_iommu_from_acpi()
[all …]
/linux-4.1.27/drivers/net/ethernet/toshiba/
Dps3_gelic_wireless.c1207 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in gelic_wl_set_encodeext() local
1216 alg = ext->alg; in gelic_wl_set_encodeext()
1222 pr_debug("%s: ext_flag=%x\n", __func__, ext->ext_flags); in gelic_wl_set_encodeext()
1223 pr_debug("%s: ext_key_len=%x\n", __func__, ext->key_len); in gelic_wl_set_encodeext()
1234 if (!enc->length && (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY)) { in gelic_wl_set_encodeext()
1258 if (IW_ENCODING_TOKEN_MAX < ext->key_len) { in gelic_wl_set_encodeext()
1260 ext->key_len); in gelic_wl_set_encodeext()
1265 wl->key_len[key_index] = ext->key_len; in gelic_wl_set_encodeext()
1267 memcpy(wl->key[key_index], ext->key, ext->key_len); in gelic_wl_set_encodeext()
1272 if (ext->key_len != WPA_PSK_LEN) { in gelic_wl_set_encodeext()
[all …]
/linux-4.1.27/drivers/pci/hotplug/
Dcpci_hotplug_pci.c147 int ext = 0; in cpci_check_ext() local
160 ext = 1; in cpci_check_ext()
161 return ext; in cpci_check_ext()
/linux-4.1.27/arch/blackfin/mach-bf538/
DMakefile6 obj-$(CONFIG_GPIOLIB) += ext-gpio.o
/linux-4.1.27/drivers/net/wireless/hostap/
Dhostap_ioctl.c3206 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra; in prism2_ioctl_siwencodeext() local
3224 addr = ext->addr.sa_data; in prism2_ioctl_siwencodeext()
3247 ext->alg == IW_ENCODE_ALG_NONE) { in prism2_ioctl_siwencodeext()
3253 switch (ext->alg) { in prism2_ioctl_siwencodeext()
3268 local->dev->name, ext->alg); in prism2_ioctl_siwencodeext()
3285 if (sta_ptr || ext->alg != IW_ENCODE_ALG_WEP) { in prism2_ioctl_siwencodeext()
3323 if ((!(ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) || ext->key_len > 0) in prism2_ioctl_siwencodeext()
3325 (*crypt)->ops->set_key(ext->key, ext->key_len, ext->rx_seq, in prism2_ioctl_siwencodeext()
3333 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in prism2_ioctl_siwencodeext()
3339 if (sta_ptr == NULL && ext->key_len > 0) { in prism2_ioctl_siwencodeext()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dllog_swab.c183 struct llog_changelog_ext_rec *ext = in lustre_swab_llog_rec() local
186 lustre_swab_lu_fid(&ext->cr.cr_sfid); in lustre_swab_llog_rec()
187 lustre_swab_lu_fid(&ext->cr.cr_spfid); in lustre_swab_llog_rec()
188 tail = &ext->cr_tail; in lustre_swab_llog_rec()
/linux-4.1.27/arch/powerpc/boot/
Dwrapper150 ext=strip
190 ext=bin
230 ext=bin
290 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
/linux-4.1.27/drivers/media/pci/saa7146/
Dhexium_orion.c417 .ext = &extension,
422 .ext = &extension,
427 .ext = &extension,
Dhexium_gemini.c358 .ext = &hexium_extension,
363 .ext = &hexium_extension,
/linux-4.1.27/tools/perf/
Dperf.c408 static const char ext[] = STRIP_EXTENSION; in handle_internal_command() local
410 if (sizeof(ext) > 1) { in handle_internal_command()
411 i = strlen(argv[0]) - strlen(ext); in handle_internal_command()
412 if (i > 0 && !strcmp(argv[0] + i, ext)) { in handle_internal_command()
/linux-4.1.27/drivers/staging/rtl8192u/
Dr8192U_wx.c754 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in r8192_wx_set_enc_ext() local
758 if ((encoding->flags & IW_ENCODE_DISABLED) || ext->alg == IW_ENCODE_ALG_NONE) in r8192_wx_set_enc_ext()
763 alg = (ext->alg == IW_ENCODE_ALG_CCMP)?KEY_TYPE_CCMP:ext->alg; in r8192_wx_set_enc_ext()
767 group = ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY; in r8192_wx_set_enc_ext()
770 if ((ext->key_len == 13) && (alg == KEY_TYPE_WEP40)) in r8192_wx_set_enc_ext()
775 memcpy((u8 *)key, ext->key, 16); /* we only get 16 bytes key.why? WB 2008.7.1 */ in r8192_wx_set_enc_ext()
/linux-4.1.27/arch/powerpc/platforms/cell/
Dinterrupt.c253 unsigned int node, ext, unit, class; in iic_host_xlate() local
266 ext = (intspec[0] >> 16) & 0xff; in iic_host_xlate()
277 *out_hwirq |= IIC_IRQ_TYPE_IOEXC | ext; in iic_host_xlate()
/linux-4.1.27/arch/m68k/math-emu/
Dfp_decode.h136 ext.w %d0
155 ext.l %d0
161 debug ext.l "%d1"
348 debug ext.l "%d0"
/linux-4.1.27/net/wireless/
Dwext-compat.c653 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra; in cfg80211_wext_siwencodeext() local
670 switch (ext->alg) { in cfg80211_wext_siwencodeext()
676 if (ext->key_len == 5) in cfg80211_wext_siwencodeext()
678 else if (ext->key_len == 13) in cfg80211_wext_siwencodeext()
716 addr = ext->addr.sa_data; in cfg80211_wext_siwencodeext()
721 params.key = ext->key; in cfg80211_wext_siwencodeext()
722 params.key_len = ext->key_len; in cfg80211_wext_siwencodeext()
725 if (ext->ext_flags & IW_ENCODE_EXT_RX_SEQ_VALID) { in cfg80211_wext_siwencodeext()
726 params.seq = ext->rx_seq; in cfg80211_wext_siwencodeext()
732 !(ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY), in cfg80211_wext_siwencodeext()
[all …]
/linux-4.1.27/drivers/net/wireless/prism54/
Disl_ioctl.c1544 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in prism54_set_encodeext() local
1545 int idx, alg = ext->alg, set_key = 1; in prism54_set_encodeext()
1568 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in prism54_set_encodeext()
1573 set_key = ext->key_len > 0 ? 1 : 0; in prism54_set_encodeext()
1582 if (ext->key_len > KEY_SIZE_WEP104) { in prism54_set_encodeext()
1586 if (ext->key_len > KEY_SIZE_WEP40) in prism54_set_encodeext()
1592 if (ext->key_len > KEY_SIZE_TKIP) { in prism54_set_encodeext()
1605 memcpy(key.key, ext->key, ext->key_len); in prism54_set_encodeext()
1653 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in prism54_get_encodeext() local
1672 max_key_len = encoding->length - sizeof(*ext); in prism54_get_encodeext()
[all …]
/linux-4.1.27/arch/m68k/fpsp040/
Dsint.S134 | ;implicitly has ext precision
195 bfclr LOCAL_SGN(%a0){#0:#8} |change back to IEEE ext format
222 | ;input a0 ptr to ext X
Dx_store.S88 | ;ext=00, sgl=01, dbl=10
113 | dbl_exp = ext_exp - $3fff(ext bias) + $7ff(dbl bias)
114 | get rid of ext integer bit
Dbindec.S22 | A1. Set RM and size ext; Set SIGMA = sign of input.
77 | A11. Restore original FPCR; set size ext.
122 | a2: pointer to FP_X; abs(original value) in ext
168 | A1. Set RM and size ext. Set SIGMA = sign input;
175 fmovel #rm_mode,%FPCR |set RM and ext
557 andil #0x00000030,USER_FPCR(%a6) |set size to ext,
619 | d0: FPCR with size set to ext/scratch final = 0
Dres_func.S73 bfclr LOCAL_SGN(%a0){#0:#8} |change back to IEEE ext format
895 bfclr WBTEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
919 bfclr ETEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
945 bfclr FPTEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
1070 bfclr WBTEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
1103 bfclr ETEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
1126 bfclr FPTEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
1249 bfclr WBTEMP_SGN(%a6){#0:#8} |convert back to IEEE ext format
1497 | 41dfffffffc00000 in dbl prec = 401d0000fffffffe00000000 in ext prec
1500 | c1e0000000000000 in dbl prec = c01e00008000000000000000 in ext prec
[all …]
/linux-4.1.27/drivers/media/i2c/soc_camera/
Dmt9t112.c277 static int mt9t112_clock_info(const struct i2c_client *client, u32 ext) in mt9t112_clock_info() argument
283 ext /= 1000; /* kbyte order */ in mt9t112_clock_info()
306 enable = ((6000 > ext) || (54000 < ext)) ? "X" : ""; in mt9t112_clock_info()
307 dev_dbg(&client->dev, "EXTCLK : %10u K %s\n", ext, enable); in mt9t112_clock_info()
309 vco = 2 * m * ext / (n+1); in mt9t112_clock_info()
336 clk = ext / (n+1); in mt9t112_clock_info()
/linux-4.1.27/fs/ntfs/
Dmft.c268 extent_nis = base_ni->ext.extent_ntfs_inos; in map_extent_mft_record()
313 ni->ext.base_ntfs_ino = base_ni; in map_extent_mft_record()
344 BUG_ON(!base_ni->ext.extent_ntfs_inos); in map_extent_mft_record()
345 memcpy(tmp, base_ni->ext.extent_ntfs_inos, new_size - in map_extent_mft_record()
347 kfree(base_ni->ext.extent_ntfs_inos); in map_extent_mft_record()
349 base_ni->ext.extent_ntfs_inos = tmp; in map_extent_mft_record()
351 base_ni->ext.extent_ntfs_inos[base_ni->nr_extents++] = ni; in map_extent_mft_record()
407 base_ni = ni->ext.base_ntfs_ino; in __mark_mft_record_dirty()
1057 extent_nis = ni->ext.extent_ntfs_inos; in ntfs_may_write_mft_record()
2798 base_ni = ni->ext.base_ntfs_ino; in ntfs_extent_mft_record_free()
[all …]
Dinode.c417 ni->ext.base_ntfs_ino = NULL; in __ntfs_init_inode()
1432 ni->ext.base_ntfs_ino = base_ni; in ntfs_read_locked_attr_inode()
1716 ni->ext.base_ntfs_ino = base_ni; in ntfs_read_locked_index_inode()
2235 if (!is_bad_inode(VFS_I(ni->ext.base_ntfs_ino))) in ntfs_clear_extent_inode()
2285 ntfs_clear_extent_inode(ni->ext.extent_ntfs_inos[i]); in ntfs_evict_big_inode()
2286 kfree(ni->ext.extent_ntfs_inos); in ntfs_evict_big_inode()
2294 iput(VFS_I(ni->ext.base_ntfs_ino)); in ntfs_evict_big_inode()
2296 ni->ext.base_ntfs_ino = NULL; in ntfs_evict_big_inode()
2391 base_ni = ni->ext.base_ntfs_ino; in ntfs_truncate()
3065 ntfs_inode **extent_nis = ni->ext.extent_ntfs_inos; in __ntfs_write_inode()
Dinode.h137 } ext; member
/linux-4.1.27/fs/9p/
Dvfs_inode.c146 char type = 0, ext[32]; in p9mode2unixmode() local
149 strlcpy(ext, stat->extension, sizeof(ext)); in p9mode2unixmode()
150 sscanf(ext, "%c %i %i", &type, &major, &minor); in p9mode2unixmode()
1160 char ext[32]; in v9fs_stat2inode() local
1188 strlcpy(ext, stat->extension, sizeof(ext)); in v9fs_stat2inode()
1190 sscanf(ext, "%13s %u", tag_name, &i_nlink); in v9fs_stat2inode()
/linux-4.1.27/drivers/staging/rtl8192e/rtl8192e/
Drtl_wx.c993 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in r8192_wx_set_enc_ext() local
998 ext->alg == IW_ENCODE_ALG_NONE) { in r8192_wx_set_enc_ext()
1006 alg = (ext->alg == IW_ENCODE_ALG_CCMP) ? KEY_TYPE_CCMP : in r8192_wx_set_enc_ext()
1007 ext->alg; in r8192_wx_set_enc_ext()
1011 group = ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY; in r8192_wx_set_enc_ext()
1015 if ((ext->key_len == 13) && (alg == KEY_TYPE_WEP40)) in r8192_wx_set_enc_ext()
1020 memcpy((u8 *)key, ext->key, 16); in r8192_wx_set_enc_ext()
1023 if (ext->key_len == 13) in r8192_wx_set_enc_ext()
/linux-4.1.27/arch/mn10300/lib/
D__ashrdi3.S47 ext d0 # sign-extend result through MDR define
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Dsrq.c181 to_mcq(init_attr->ext.xrc.cq)->mcq.cqn : 0; in mlx4_ib_create_srq()
183 to_mxrcd(init_attr->ext.xrc.xrcd)->xrcdn : in mlx4_ib_create_srq()
191 srq->ibsrq.ext.xrc.srq_num = srq->msrq.srqn; in mlx4_ib_create_srq()
/linux-4.1.27/fs/udf/
Dunicode.c468 uint8_t ext[EXT_SIZE]; in udf_translate_to_linux() local
487 ext[localExtIndex++] = curr; in udf_translate_to_linux()
506 newName[newIndex++] = ext[index]; in udf_translate_to_linux()
/linux-4.1.27/drivers/scsi/bfa/
Dbfad.c490 goto ext; in bfa_fcb_rport_alloc()
495 ext: in bfa_fcb_rport_alloc()
620 goto ext; in bfad_hal_mem_alloc()
634 goto ext; in bfad_hal_mem_alloc()
639 ext: in bfad_hal_mem_alloc()
658 goto ext; in bfad_vport_create()
693 ext: in bfad_vport_create()
1723 goto ext; in bfad_init()
1736 goto ext; in bfad_init()
1741 ext: in bfad_init()
/linux-4.1.27/drivers/dma/ioat/
Ddma_v3.c669 struct ioat_ring_ent *ext; in __ioat3_prep_xor_lock() local
712 ext = ioat2_get_ring_ent(ioat, idx + i + 1); in __ioat3_prep_xor_lock()
713 xor_ex = ext->xor_ex; in __ioat3_prep_xor_lock()
774 dump_pq_desc_dbg(struct ioat2_dma_chan *ioat, struct ioat_ring_ent *desc, struct ioat_ring_ent *ext) in dump_pq_desc_dbg() argument
778 struct ioat_pq_ext_descriptor *pq_ex = ext ? ext->pq_ex : NULL; in dump_pq_desc_dbg()
846 struct ioat_ring_ent *ext; in __ioat3_prep_pq_lock() local
896 ext = ioat2_get_ring_ent(ioat, idx + i + with_ext); in __ioat3_prep_pq_lock()
897 pq_ex = ext->pq_ex; in __ioat3_prep_pq_lock()
935 dump_pq_desc_dbg(ioat, desc, ext); in __ioat3_prep_pq_lock()
/linux-4.1.27/drivers/infiniband/core/
Dverbs.c311 srq->ext.xrc.xrcd = srq_init_attr->ext.xrc.xrcd; in ib_create_srq()
312 srq->ext.xrc.cq = srq_init_attr->ext.xrc.cq; in ib_create_srq()
313 atomic_inc(&srq->ext.xrc.xrcd->usecnt); in ib_create_srq()
314 atomic_inc(&srq->ext.xrc.cq->usecnt); in ib_create_srq()
356 xrcd = srq->ext.xrc.xrcd; in ib_destroy_srq()
357 cq = srq->ext.xrc.cq; in ib_destroy_srq()
Duverbs_cmd.c3006 attr.ext.xrc.xrcd = idr_read_xrcd(cmd->xrcd_handle, file->ucontext, &xrcd_uobj); in __uverbs_create_xsrq()
3007 if (!attr.ext.xrc.xrcd) { in __uverbs_create_xsrq()
3015 attr.ext.xrc.cq = idr_read_cq(cmd->cq_handle, file->ucontext, 0); in __uverbs_create_xsrq()
3016 if (!attr.ext.xrc.cq) { in __uverbs_create_xsrq()
3052 srq->ext.xrc.cq = attr.ext.xrc.cq; in __uverbs_create_xsrq()
3053 srq->ext.xrc.xrcd = attr.ext.xrc.xrcd; in __uverbs_create_xsrq()
3054 atomic_inc(&attr.ext.xrc.cq->usecnt); in __uverbs_create_xsrq()
3055 atomic_inc(&attr.ext.xrc.xrcd->usecnt); in __uverbs_create_xsrq()
3071 resp.srqn = srq->ext.xrc.srq_num; in __uverbs_create_xsrq()
3081 put_cq_read(attr.ext.xrc.cq); in __uverbs_create_xsrq()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dinterval_tree.h118 struct interval_node_extent *ext,
/linux-4.1.27/include/scsi/fc/
Dfc_fcp.h167 struct fcp_resp_ext ext; member
/linux-4.1.27/include/sound/
Dasequencer.h30 #define snd_seq_event_bounce_ext_data(ev) ((void*)((char *)(ev)->data.ext.ptr + sizeof(struct snd_s…
Dopl3.h383 const unsigned char *ext,
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Dphy-miphy28lp.txt37 - st,osc-force-ext : to select the external oscillator. This can change from
81 st,osc-force-ext;
/linux-4.1.27/drivers/media/pci/ttpci/
Dbudget.h87 .ext = &budget_extension };
/linux-4.1.27/arch/c6x/lib/
Dnegll.S28 || ext .s1 A3,24,24,A5
/linux-4.1.27/Documentation/devicetree/bindings/leds/
Dleds-pm8941-wled.txt14 - qcom,ext-gen: bool; use externally generated modulator signal to dim
/linux-4.1.27/include/media/
Dsaa7146.h75 struct saa7146_extension *ext; member
137 struct saa7146_extension *ext; /* indicates if handled by extension */ member
/linux-4.1.27/drivers/target/tcm_fc/
Dtfc_cmd.c152 fcp->ext.fr_sns_len = htonl(len); in ft_queue_status()
165 fcp->ext.fr_resid = cpu_to_be32(se_cmd->residual_count); in ft_queue_status()
327 fcp->ext.fr_rsp_len = htonl(sizeof(*info)); in ft_send_resp_status()
/linux-4.1.27/drivers/video/fbdev/
Dacornfb.h25 u_int ext:4; member
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dtraps.c126 } while (r.ext == regk_intr_vect_on); in handle_nmi()
/linux-4.1.27/drivers/infiniband/hw/mlx5/
Dsrq.c295 xrcdn = to_mxrcd(init_attr->ext.xrc.xrcd)->xrcdn; in mlx5_ib_create_srq()
296 in->ctx.pgoff_cqn |= cpu_to_be32(to_mcq(init_attr->ext.xrc.cq)->mcq.cqn); in mlx5_ib_create_srq()
316 srq->ibsrq.ext.xrc.srq_num = srq->msrq.srqn; in mlx5_ib_create_srq()
Dmain.c1141 attr.ext.xrc.cq = devr->c0; in create_dev_resources()
1142 attr.ext.xrc.xrcd = devr->x0; in create_dev_resources()
1155 devr->s0->ext.xrc.xrcd = devr->x0; in create_dev_resources()
1156 devr->s0->ext.xrc.cq = devr->c0; in create_dev_resources()
1157 atomic_inc(&devr->s0->ext.xrc.xrcd->usecnt); in create_dev_resources()
1158 atomic_inc(&devr->s0->ext.xrc.cq->usecnt); in create_dev_resources()
/linux-4.1.27/drivers/net/ethernet/atheros/atl1c/
Datl1c_hw.c315 int atl1c_read_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, in atl1c_read_phy_core() argument
329 if (ext) { in atl1c_read_phy_core()
364 int atl1c_write_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, in atl1c_write_phy_core() argument
378 if (ext) { in atl1c_write_phy_core()
/linux-4.1.27/sound/core/
Dpcm_compat.c215 bool ext) in snd_pcm_status_user_compat() argument
226 if (ext && get_user(status.audio_tstamp_data, in snd_pcm_status_user_compat()
279 bool ext) in snd_pcm_status_user_x32() argument
290 if (ext && get_user(status.audio_tstamp_data, in snd_pcm_status_user_x32()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Dhdmi4_core.c90 u8 *pedid, int ext) in hdmi_core_ddc_edid() argument
104 if (ext % 2 != 0) in hdmi_core_ddc_edid()
108 REG_FLD_MOD(base, HDMI_CORE_DDC_SEGM, ext / 2, 7, 0); in hdmi_core_ddc_edid()
121 if (ext) in hdmi_core_ddc_edid()
/linux-4.1.27/net/sched/
Dem_ipset.c86 opt.ext.timeout = ~0u; in em_ipset_match()
/linux-4.1.27/include/video/
Dtdfx.h164 unsigned char ext[2]; member
/linux-4.1.27/arch/metag/include/asm/
Dprocessor.h63 TBICTXEXTTDPR ext; member
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dsamsung,s3c2412-clock.txt28 - "ext" - external clock source - optional,
Dsamsung,s3c2443-clock.txt31 - "ext" - external clock source - optional,
/linux-4.1.27/arch/x86/kernel/cpu/
Dperf_event_intel_lbr.c613 int ext, to_plm, from_plm; in branch_type() local
731 ext = (insn.modrm.bytes[0] >> 3) & 0x7; in branch_type()
732 switch (ext) { in branch_type()
/linux-4.1.27/arch/arm/kvm/
Darm.c169 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) in kvm_vm_ioctl_check_extension() argument
172 switch (ext) { in kvm_vm_ioctl_check_extension()
200 r = kvm_arch_dev_ioctl_check_extension(ext); in kvm_vm_ioctl_check_extension()
/linux-4.1.27/include/linux/
Dnvme.h121 bool ext; member
/linux-4.1.27/Documentation/networking/
Dgeneric-hdlc.txt40 sethdlc hdlc0 rs232 clock ext
55 * clock ext - both RX clock and TX clock external
/linux-4.1.27/drivers/net/wireless/
Datmel.c1853 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in atmel_set_encodeext() local
1854 int idx, key_len, alg = ext->alg, set_key = 1; in atmel_set_encodeext()
1868 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) { in atmel_set_encodeext()
1870 set_key = ext->key_len > 0 ? 1 : 0; in atmel_set_encodeext()
1882 if (ext->key_len > 5) { in atmel_set_encodeext()
1886 } else if (ext->key_len > 0) { in atmel_set_encodeext()
1895 key_len = min ((int)ext->key_len, priv->wep_key_len[idx]); in atmel_set_encodeext()
1896 memcpy(priv->wep_keys[idx], ext->key, key_len); in atmel_set_encodeext()
1913 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; in atmel_get_encodeext() local
1916 max_key_len = encoding->length - sizeof(*ext); in atmel_get_encodeext()
[all …]
/linux-4.1.27/drivers/gpu/drm/
Ddrm_edid.c1496 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in cea_for_each_detailed_block() argument
1499 u8 d = ext[0x02]; in cea_for_each_detailed_block()
1500 u8 *det_base = ext + d; in cea_for_each_detailed_block()
1508 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in vtb_for_each_detailed_block() argument
1510 unsigned int i, n = min((int)ext[0x02], 6); in vtb_for_each_detailed_block()
1511 u8 *det_base = ext + 5; in vtb_for_each_detailed_block()
1513 if (ext[0x01] != 1) in vtb_for_each_detailed_block()
1533 u8 *ext = raw_edid + (i * EDID_LENGTH); in drm_for_each_detailed_block() local
1534 switch (*ext) { in drm_for_each_detailed_block()
1536 cea_for_each_detailed_block(ext, cb, closure); in drm_for_each_detailed_block()
[all …]
/linux-4.1.27/fs/fat/
Dnamei_vfat.c319 unsigned char base[9], ext[4], buf[5], *p; in vfat_create_shortname() local
396 for (p = ext, ip = ext_start; extlen < 3 && ip < end; ip++) { in vfat_create_shortname()
417 ext[extlen] = '\0'; in vfat_create_shortname()
431 memcpy(name_res + 8, ext, extlen); in vfat_create_shortname()
/linux-4.1.27/drivers/hwmon/
Dadm1031.c216 #define TEMP_FROM_REG_EXT(val, ext) (TEMP_FROM_REG(val) + (ext) * 125) argument
694 int ext; in show_temp() local
695 ext = nr == 0 ? in show_temp()
698 return sprintf(buf, "%d\n", TEMP_FROM_REG_EXT(data->temp[nr], ext)); in show_temp()
/linux-4.1.27/drivers/gpio/
Dgpio-dwapb.c59 u32 ext; member
613 ctx->ext = dwapb_read(gpio, offset); in dwapb_gpio_suspend()
655 dwapb_write(gpio, offset, ctx->ext); in dwapb_gpio_resume()
/linux-4.1.27/arch/arm64/include/asm/
Dkvm_host.h50 int kvm_arch_dev_ioctl_check_extension(long ext);
/linux-4.1.27/Documentation/ia64/
Dxen.txt29 # hg clone http://xenbits.xensource.com/ext/ia64/xen-unstable.hg
31 # hg clone http://xenbits.xensource.com/ext/ia64/linux-2.6.18-xen.hg
/linux-4.1.27/drivers/iio/dac/
Dad5446.c142 #define _AD5446_CHANNEL(bits, storage, _shift, ext) { \ argument
155 .ext_info = (ext), \
/linux-4.1.27/drivers/memstick/core/
Dmspro_block.c120 char ext[3]; member
447 char name[9], ext[4]; in mspro_block_attr_show_specfile() local
452 memcpy(ext, x_spfile->ext, 3); in mspro_block_attr_show_specfile()
453 ext[3] = 0; in mspro_block_attr_show_specfile()
456 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "ext: %s\n", ext); in mspro_block_attr_show_specfile()
/linux-4.1.27/drivers/video/fbdev/nvidia/
Dnv_type.h92 RIVA_HW_STATE ext; member
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Dfwcmd.h214 u8 ext; member
/linux-4.1.27/drivers/irqchip/
DMakefile12 obj-$(CONFIG_METAG) += irq-metag-ext.o
/linux-4.1.27/arch/arm/mach-w90x900/
Dcpu.c74 static DEFINE_CLK(ext, 0);

12