Home
last modified time | relevance | path

Searched refs:compat (Results 1 – 123 of 123) sorted by relevance

/linux-4.1.27/arch/x86/kernel/
Dsyscall_32.c9 #define SYM(sym, compat) compat argument
11 #define SYM(sym, compat) sym argument
16 #define __SYSCALL_I386(nr, sym, compat) extern asmlinkage void SYM(sym, compat)(void) ; argument
20 #define __SYSCALL_I386(nr, sym, compat) [nr] = SYM(sym, compat), argument
Dsyscall_64.c9 #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat) argument
12 # define __SYSCALL_X32(nr, sym, compat) __SYSCALL_64(nr, sym, compat) argument
14 # define __SYSCALL_X32(nr, sym, compat) /* nothing */ argument
17 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ; argument
21 #define __SYSCALL_64(nr, sym, compat) [nr] = sym, argument
Dasm-offsets_64.c7 #define __SYSCALL_64(nr, sym, compat) [nr] = 1, argument
8 #define __SYSCALL_COMMON(nr, sym, compat) [nr] = 1, argument
10 # define __SYSCALL_X32(nr, sym, compat) [nr] = 1, argument
12 # define __SYSCALL_X32(nr, sym, compat) /* nothing */ argument
17 #define __SYSCALL_I386(nr, sym, compat) [nr] = 1, argument
Dasm-offsets_32.c10 #define __SYSCALL_I386(nr, sym, compat) [nr] = 1, argument
/linux-4.1.27/drivers/firmware/efi/
Defivars.c267 struct compat_efi_variable *compat; in efivar_store_raw() local
269 if (count != sizeof(*compat)) in efivar_store_raw()
272 compat = (struct compat_efi_variable *)buf; in efivar_store_raw()
273 attributes = compat->Attributes; in efivar_store_raw()
274 vendor = compat->VendorGuid; in efivar_store_raw()
275 name = compat->VariableName; in efivar_store_raw()
276 size = compat->DataSize; in efivar_store_raw()
277 data = compat->Data; in efivar_store_raw()
283 copy_out_compat(&entry->var, compat); in efivar_store_raw()
316 struct compat_efi_variable *compat; in efivar_show_raw() local
[all …]
/linux-4.1.27/drivers/of/
Ddevice.c168 const char *compat; in of_device_get_modalias() local
180 compat = of_get_property(dev->of_node, "compatible", &cplen); in of_device_get_modalias()
181 if (!compat) in of_device_get_modalias()
185 for (i = (cplen - 1); i >= 0 && !compat[i]; i--) in of_device_get_modalias()
204 memcpy(&str[csize + 1], compat, cplen); in of_device_get_modalias()
221 const char *compat; in of_device_uevent() local
236 compat = of_get_property(dev->of_node, "compatible", &cplen); in of_device_uevent()
237 while (compat && *compat && cplen > 0) { in of_device_uevent()
238 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
239 sl = strlen(compat) + 1; in of_device_uevent()
[all …]
Dfdt.c90 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
101 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
134 const char *const *compat) in of_fdt_match() argument
138 if (!compat) in of_fdt_match()
141 while (*compat) { in of_fdt_match()
142 tmp = of_fdt_is_compatible(blob, node, *compat); in of_fdt_match()
145 compat++; in of_fdt_match()
663 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
665 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
671 int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
[all …]
Dof_reserved_mem.c188 const char *compat = i->compatible; in __reserved_mem_init_node() local
190 if (!of_flat_dt_is_compatible(rmem->fdt_node, compat)) in __reserved_mem_init_node()
195 rmem->name, compat); in __reserved_mem_init_node()
Dbase.c445 const char *compat, const char *type, const char *name) in __of_device_is_compatible() argument
452 if (compat && compat[0]) { in __of_device_is_compatible()
456 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) { in __of_device_is_compatible()
486 const char *compat) in of_device_is_compatible() argument
492 res = __of_device_is_compatible(device, compat, NULL, NULL); in of_device_is_compatible()
505 int of_machine_is_compatible(const char *compat) in of_machine_is_compatible() argument
512 rc = of_device_is_compatible(root, compat); in of_machine_is_compatible()
/linux-4.1.27/arch/sparc/kernel/
Dvio.c25 const char *type, *compat; in vio_match_device() local
29 compat = dev->compat; in vio_match_device()
32 while (matches->type[0] || matches->compat[0]) { in vio_match_device()
37 if (matches->compat[0]) { in vio_match_device()
39 of_find_in_proplist(compat, matches->compat, len); in vio_match_device()
206 const char *type, *compat, *bus_id_name; in vio_create_one() local
255 compat = mdesc_get_property(hp, mp, "device-type", &clen); in vio_create_one()
256 if (!compat) { in vio_create_one()
272 if (compat) in vio_create_one()
273 memcpy(vdev->compat, compat, clen); in vio_create_one()
[all …]
/linux-4.1.27/arch/x86/um/
Dsys_call_table_64.c37 #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat) argument
38 #define __SYSCALL_X32(nr, sym, compat) /* Not supported */ argument
40 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ; argument
44 #define __SYSCALL_64(nr, sym, compat) [ nr ] = sym, argument
Duser-offsets.c12 #define __SYSCALL_I386(nr, sym, compat) [nr] = 1, argument
17 #define __SYSCALL_64(nr, sym, compat) [nr] = 1, argument
18 #define __SYSCALL_COMMON(nr, sym, compat) [nr] = 1, argument
19 #define __SYSCALL_X32(nr, sym, compat) /* Not supported */ argument
Dsys_call_table_32.c27 #define __SYSCALL_I386(nr, sym, compat) extern asmlinkage void sym(void) ; argument
31 #define __SYSCALL_I386(nr, sym, compat) [ nr ] = sym, argument
/linux-4.1.27/drivers/macintosh/
Dmacio_sysfs.c19 const char *compat; in compatible_show() local
24 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in compatible_show()
25 if (!compat) { in compatible_show()
31 length += sprintf (buf, "%s\n", compat); in compatible_show()
33 l = strlen (compat) + 1; in compatible_show()
34 compat += l; in compatible_show()
/linux-4.1.27/net/xfrm/
Dxfrm_algo.c179 .compat = "md5",
199 .compat = "sha1",
219 .compat = "sha256",
277 .compat = "rmd160",
332 .compat = "cipher_null",
352 .compat = "des",
372 .compat = "des3_ede",
392 .compat = "cast5",
412 .compat = "blowfish",
432 .compat = "aes",
[all …]
/linux-4.1.27/net/mac80211/
Dchan.c83 const struct cfg80211_chan_def *compat) in ieee80211_chanctx_reserved_chandef() argument
91 if (!compat) in ieee80211_chanctx_reserved_chandef()
92 compat = &sdata->reserved_chandef; in ieee80211_chanctx_reserved_chandef()
94 compat = cfg80211_chandef_compatible(&sdata->reserved_chandef, in ieee80211_chanctx_reserved_chandef()
95 compat); in ieee80211_chanctx_reserved_chandef()
96 if (!compat) in ieee80211_chanctx_reserved_chandef()
100 return compat; in ieee80211_chanctx_reserved_chandef()
106 const struct cfg80211_chan_def *compat) in ieee80211_chanctx_non_reserved_chandef() argument
117 if (!compat) in ieee80211_chanctx_non_reserved_chandef()
118 compat = &sdata->vif.bss_conf.chandef; in ieee80211_chanctx_non_reserved_chandef()
[all …]
/linux-4.1.27/drivers/hid/
Duhid.c399 struct uhid_create_req_compat *compat; in uhid_event_from_user() local
401 compat = kzalloc(sizeof(*compat), GFP_KERNEL); in uhid_event_from_user()
402 if (!compat) in uhid_event_from_user()
407 if (copy_from_user(compat, buffer, in uhid_event_from_user()
408 min(len, sizeof(*compat)))) { in uhid_event_from_user()
409 kfree(compat); in uhid_event_from_user()
416 memcpy(event->u.create.name, compat->name, in uhid_event_from_user()
417 sizeof(compat->name)); in uhid_event_from_user()
418 memcpy(event->u.create.phys, compat->phys, in uhid_event_from_user()
419 sizeof(compat->phys)); in uhid_event_from_user()
[all …]
/linux-4.1.27/arch/x86/syscalls/
Dsyscalltbl.sh7 while read nr abi name entry compat; do
9 if [ -n "$compat" ]; then
10 echo "__SYSCALL_${abi}($nr, $entry, $compat)"
Dsyscall_32.tbl5 # <number> <abi> <name> <entry point> <compat entry point>
/linux-4.1.27/sound/aoa/soundbus/
Dcore.c63 const char *compat; in soundbus_uevent() local
89 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in soundbus_uevent()
90 while (compat && cplen > 0) { in soundbus_uevent()
92 retval = add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in soundbus_uevent()
95 compat += env->buflen - tmp; in soundbus_uevent()
/linux-4.1.27/drivers/irqchip/
Dirqchip.h26 #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) argument
/linux-4.1.27/drivers/ide/
Dtrm290.c281 u16 new, old, compat = hwif->channel ? 0x374 : 0x3f4; in init_hwif_trm290() local
289 if (old != compat && old_mask == 0xff) { in init_hwif_trm290()
291 compat += (next_offset += 0x400); in init_hwif_trm290()
292 hwif->io_ports.ctl_addr = compat + 2; in init_hwif_trm290()
293 outw(compat | 1, hwif->config_data); in init_hwif_trm290()
/linux-4.1.27/include/linux/
Daio.h18 struct iocb __user *__user *iocbpp, bool compat);
24 bool compat) { return 0; } in do_io_submit() argument
Dof.h246 const char *type, const char *compat);
340 extern int of_machine_is_compatible(const char *compat);
492 const char *compat) in of_find_compatible_node() argument
615 static inline int of_machine_is_compatible(const char *compat) in of_machine_is_compatible() argument
927 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument
930 = { .compatible = compat, \
933 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument
936 = { .compatible = compat, \
943 #define OF_DECLARE_1(table, name, compat, fn) \ argument
944 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
[all …]
Dof_iommu.h43 #define IOMMU_OF_DECLARE(name, compat, fn) \ argument
44 _OF_DECLARE(iommu, name, compat, fn, of_iommu_init_fn)
Dof_reserved_mem.h27 #define RESERVEDMEM_OF_DECLARE(name, compat, init) \ argument
28 _OF_DECLARE(reservedmem, name, compat, init, reservedmem_of_init_fn)
Dof_fdt.h35 const char *compat);
39 const char *const *compat);
Dclocksource.h247 #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ argument
248 OF_DECLARE_1(clksrc, name, compat, fn)
Dserial_core.h357 #define OF_EARLYCON_DECLARE(name, compat, fn) \ argument
358 _OF_DECLARE(earlycon, name, compat, fn, void *)
Dclk-provider.h615 #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn) argument
Dmod_devicetable.h233 char compat[32]; member
Dcompat.h428 extern void sigset_from_compat(sigset_t *set, const compat_sigset_t *compat);
429 extern void sigset_to_compat(compat_sigset_t *compat, const sigset_t *set);
/linux-4.1.27/arch/metag/kernel/
Dsetup.c192 const char **compat; in dump_machine_table() local
197 for (compat = p->dt_compat; compat && *compat; ++compat) in dump_machine_table()
198 printk(" '%s'", *compat); in dump_machine_table()
/linux-4.1.27/drivers/staging/wlan-ng/
Dprism2fw.c100 hfa384x_caplevel_t compat; member
1150 s3info[i].info.compat.role, in validate_identity()
1151 s3info[i].info.compat.id, in validate_identity()
1152 s3info[i].info.compat.variant, in validate_identity()
1153 s3info[i].info.compat.bottom, in validate_identity()
1154 s3info[i].info.compat.top); in validate_identity()
1157 if ((s3info[i].info.compat.role == 1) && in validate_identity()
1158 (s3info[i].info.compat.id == 2)) { in validate_identity()
1159 if (s3info[i].info.compat.variant != in validate_identity()
1166 if ((s3info[i].info.compat.role == 1) && in validate_identity()
[all …]
/linux-4.1.27/kernel/
Dcompat.c974 sigset_from_compat(sigset_t *set, const compat_sigset_t *compat) in sigset_from_compat() argument
977 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 ); in sigset_from_compat()
978 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 ); in sigset_from_compat()
979 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 ); in sigset_from_compat()
980 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 ); in sigset_from_compat()
986 sigset_to_compat(compat_sigset_t *compat, const sigset_t *set) in sigset_to_compat() argument
989 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3]; in sigset_to_compat()
990 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2]; in sigset_to_compat()
991 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1]; in sigset_to_compat()
992 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0]; in sigset_to_compat()
DMakefile55 obj-$(CONFIG_COMPAT) += compat.o
/linux-4.1.27/arch/arm/mach-imx/
Dcpu-imx5.c29 static u32 imx5_read_srev_reg(const char *compat) in imx5_read_srev_reg() argument
35 np = of_find_compatible_node(NULL, NULL, compat); in imx5_read_srev_reg()
Dcpu.c65 const char *compat) in imx_aips_allow_unprivileged_access() argument
70 for_each_compatible_node(np, NULL, compat) { in imx_aips_allow_unprivileged_access()
Dcommon.h62 void imx_aips_allow_unprivileged_access(const char *compat);
Dpm-imx6.c401 const char *compat) in imx6_pm_get_base() argument
407 node = of_find_compatible_node(NULL, NULL, compat); in imx6_pm_get_base()
/linux-4.1.27/net/netfilter/
Dxt_set.c55 ADT_OPT(opt, par->family, info->match_set.u.compat.dim, in set_match_v0()
56 info->match_set.u.compat.flags, 0, UINT_MAX); in set_match_v0()
59 info->match_set.u.compat.flags & IPSET_INV_MATCH); in set_match_v0()
68 info->u.compat.dim = IPSET_DIM_ZERO; in compat_flags()
70 info->u.compat.flags |= IPSET_INV_MATCH; in compat_flags()
72 info->u.compat.dim++; in compat_flags()
74 info->u.compat.flags |= (1<<info->u.compat.dim); in compat_flags()
255 ADT_OPT(add_opt, par->family, info->add_set.u.compat.dim, in set_target_v0()
256 info->add_set.u.compat.flags, 0, UINT_MAX); in set_target_v0()
257 ADT_OPT(del_opt, par->family, info->del_set.u.compat.dim, in set_target_v0()
[all …]
DKconfig652 This is a backwards-compat option for the user's convenience
779 This is a backwards-compat option for the user's convenience
1035 This is a backwards-compat option for the user's convenience
1220 This is a backwards-compat option for the user's convenience
/linux-4.1.27/net/atm/
Dioctl.c51 unsigned long arg, int compat) in do_vcc_ioctl() argument
85 if (compat) in do_vcc_ioctl()
93 if (compat) in do_vcc_ioctl()
124 if (compat) { in do_vcc_ioctl()
180 error = atm_dev_ioctl(cmd, argp, compat); in do_vcc_ioctl()
Dresources.c195 int atm_dev_ioctl(unsigned int cmd, void __user *arg, int compat) in atm_dev_ioctl() argument
206 compat = 0; /* Just so the compiler _knows_ */ in atm_dev_ioctl()
211 if (compat) { in atm_dev_ioctl()
255 if (compat) { in atm_dev_ioctl()
419 if (compat) { in atm_dev_ioctl()
Dresources.h16 int atm_dev_ioctl(unsigned int cmd, void __user *arg, int compat);
/linux-4.1.27/arch/powerpc/boot/
Dops.h51 const char *compat);
97 int dt_is_compatible(void *node, const char *compat);
185 const char *compat) in find_node_by_compatible() argument
188 return dt_ops.find_node_by_compatible(prev, compat); in find_node_by_compatible()
Ddevtree.c335 int dt_is_compatible(void *node, const char *compat) in dt_is_compatible() argument
345 if (!strcmp(buf + pos, compat)) in dt_is_compatible()
/linux-4.1.27/fs/jbd2/
Djournal.c1772 int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat, in jbd2_journal_check_used_features() argument
1777 if (!compat && !ro && !incompat) in jbd2_journal_check_used_features()
1788 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) && in jbd2_journal_check_used_features()
1807 int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat, in jbd2_journal_check_available_features() argument
1810 if (!compat && !ro && !incompat) in jbd2_journal_check_available_features()
1820 if ((compat & JBD2_KNOWN_COMPAT_FEATURES) == compat && in jbd2_journal_check_available_features()
1840 int jbd2_journal_set_features (journal_t *journal, unsigned long compat, in jbd2_journal_set_features() argument
1846 ((compat & (f)) && !(sb->s_feature_compat & cpu_to_be32(f))) in jbd2_journal_set_features()
1849 if (jbd2_journal_check_used_features(journal, compat, ro, incompat)) in jbd2_journal_set_features()
1852 if (!jbd2_journal_check_available_features(journal, compat, ro, incompat)) in jbd2_journal_set_features()
[all …]
/linux-4.1.27/arch/s390/kernel/
DMakefile45 compat-obj-$(CONFIG_AUDIT) += compat_audit.o
47 obj-$(CONFIG_COMPAT) += compat_wrapper.o $(compat-obj-y)
/linux-4.1.27/fs/jbd/
Djournal.c1397 int journal_check_used_features (journal_t *journal, unsigned long compat, in journal_check_used_features() argument
1402 if (!compat && !ro && !incompat) in journal_check_used_features()
1409 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) && in journal_check_used_features()
1428 int journal_check_available_features (journal_t *journal, unsigned long compat, in journal_check_available_features() argument
1431 if (!compat && !ro && !incompat) in journal_check_available_features()
1441 if ((compat & JFS_KNOWN_COMPAT_FEATURES) == compat && in journal_check_available_features()
1461 int journal_set_features (journal_t *journal, unsigned long compat, in journal_set_features() argument
1466 if (journal_check_used_features(journal, compat, ro, incompat)) in journal_set_features()
1469 if (!journal_check_available_features(journal, compat, ro, incompat)) in journal_set_features()
1473 compat, ro, incompat); in journal_set_features()
[all …]
/linux-4.1.27/drivers/net/ethernet/broadcom/genet/
Dbcmmii.c442 char *compat; in bcmgenet_mii_of_init() local
445 compat = kasprintf(GFP_KERNEL, "brcm,genet-mdio-v%d", priv->version); in bcmgenet_mii_of_init()
446 if (!compat) in bcmgenet_mii_of_init()
449 mdio_dn = of_find_compatible_node(dn, NULL, compat); in bcmgenet_mii_of_init()
450 kfree(compat); in bcmgenet_mii_of_init()
/linux-4.1.27/drivers/pnp/isapnp/
DMakefile5 pnp-y := core.o compat.o
Dcore.c583 int number = 0, skip = 0, priority, compat = 0; in isapnp_create_device() local
614 compat = 0; in isapnp_create_device()
617 if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) { in isapnp_create_device()
623 compat++; in isapnp_create_device()
/linux-4.1.27/fs/quota/
DMakefile6 obj-$(CONFIG_QUOTACTL_COMPAT) += compat.o
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Domapdss-boot-init.c55 static void __init omapdss_update_prop(struct device_node *node, char *compat, in omapdss_update_prop() argument
65 prop->value = compat; in omapdss_update_prop()
DMakefile8 dispc-compat.o display-sysfs.o
/linux-4.1.27/ipc/
DMakefile5 obj-$(CONFIG_SYSVIPC_COMPAT) += compat.o
/linux-4.1.27/security/keys/
DMakefile18 obj-$(CONFIG_KEYS_COMPAT) += compat.o
/linux-4.1.27/drivers/mtd/ubi/
Dio.c884 int compat = vid_hdr->compat; in validate_vid_hdr() local
907 if (vol_id < UBI_INTERNAL_VOL_START && compat != 0) { in validate_vid_hdr()
912 if (vol_id >= UBI_INTERNAL_VOL_START && compat != UBI_COMPAT_DELETE && in validate_vid_hdr()
913 compat != UBI_COMPAT_RO && compat != UBI_COMPAT_PRESERVE && in validate_vid_hdr()
914 compat != UBI_COMPAT_REJECT) { in validate_vid_hdr()
Dattach.c291 av->compat = vid_hdr->compat; in add_volume()
1002 switch (vidh->compat) { in scan_peb()
1668 if (av->compat != vidh->compat) { in self_check_ai()
1669 ubi_err(ubi, "bad compat %d", vidh->compat); in self_check_ai()
Dubi-media.h283 __u8 compat; member
Ddebug.c89 pr_err("\tcompat %d\n", (int)vid_hdr->compat); in ubi_dump_vid_hdr()
176 pr_err("\tcompat %d\n", av->compat); in ubi_dump_av()
Deba.c722 vid_hdr->compat = ubi_get_compat(ubi, vol_id); in ubi_eba_write_leb()
839 vid_hdr->compat = ubi_get_compat(ubi, vol_id); in ubi_eba_write_leb_st()
960 vid_hdr->compat = ubi_get_compat(ubi, vol_id); in ubi_eba_atomic_leb_change()
Dubi.h689 int compat; member
Dvtbl.c317 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT; in create_vtbl()
Dfastmap.c125 new->compat = UBI_COMPAT_DELETE; in new_fm_vhdr()
207 av->compat = 0; in add_vol()
/linux-4.1.27/arch/sparc/include/asm/
Dfloppy_64.h534 const char *compat; in ebus_fdthree_p() local
536 compat = of_get_property(dp, "compatible", NULL); in ebus_fdthree_p()
537 if (compat && !strcmp(compat, "fdthree")) in ebus_fdthree_p()
Dvio.h326 char compat[VIO_MAX_COMPAT_LEN]; member
/linux-4.1.27/drivers/input/
DMakefile8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
Devdev.c607 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
611 if (compat) { in bits_to_user()
635 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
637 int len = compat ? in bits_to_user()
651 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
789 int compat) in evdev_handle_get_val() argument
811 ret = bits_to_user(mem, maxbit, maxlen, p, compat); in evdev_handle_get_val()
/linux-4.1.27/include/uapi/linux/netfilter/
Dxt_set.h24 } compat; member
/linux-4.1.27/fs/
Dexec.c394 const compat_uptr_t __user *compat; member
405 compat_uptr_t compat; in get_user_arg_ptr() local
407 if (get_user(compat, argv.ptr.compat + nr)) in get_user_arg_ptr()
410 return compat_ptr(compat); in get_user_arg_ptr()
1649 .ptr.compat = __argv, in compat_do_execve()
1653 .ptr.compat = __envp, in compat_do_execve()
1665 .ptr.compat = __argv, in compat_do_execveat()
1669 .ptr.compat = __envp, in compat_do_execveat()
Daio.c1377 bool compat, in aio_setup_vectored_rw() argument
1381 if (compat) in aio_setup_vectored_rw()
1395 char __user *buf, size_t len, bool compat) in aio_run_iocb() argument
1428 &iovec, compat, &iter); in aio_run_iocb()
1488 struct iocb *iocb, bool compat) in io_submit_one() argument
1551 compat); in io_submit_one()
1564 struct iocb __user *__user *iocbpp, bool compat) in do_io_submit() argument
1606 ret = io_submit_one(ctx, user_iocb, &tmp, compat); in do_io_submit()
DMakefile33 obj-$(CONFIG_COMPAT) += compat.o compat_ioctl.o
/linux-4.1.27/arch/arm/kernel/
Dentry-common.S266 #define ABI(native, compat) native argument
378 #define ABI(native, compat) compat argument
DMakefile55 obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o
/linux-4.1.27/net/wireless/
DMakefile15 cfg80211-$(CONFIG_CFG80211_WEXT) += wext-compat.o wext-sme.o
/linux-4.1.27/arch/tile/kernel/
DMakefile18 obj-$(CONFIG_COMPAT) += compat.o compat_signal.o
/linux-4.1.27/drivers/media/v4l2-core/
DMakefile11 videodev-objs += v4l2-compat-ioctl32.o
/linux-4.1.27/drivers/isdn/gigaset/
Dinterface.c63 static const unsigned compat[4] = GIG_COMPAT; in if_version() local
73 memcpy(arg, compat, sizeof compat); in if_version()
/linux-4.1.27/net/
DMakefile10 tmp-$(CONFIG_COMPAT) := compat.o
DKconfig31 This option can be selected by other options that need compat
40 to tasks depending on whether the task is a compat task or not. To
42 compat skb before sending the skb, the netlink code will sort out
46 compat-independent messages instead!
/linux-4.1.27/scripts/
DMakefile.extrawarn46 warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
Dcheckpatch.pl2489 foreach my $compat (@compats) {
2490 my $compat2 = $compat;
2492 my $compat3 = $compat;
2494 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
2497 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2500 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
/linux-4.1.27/drivers/char/
Dsonypi.c86 static int compat; /* = 0 */ variable
87 module_param(compat, int, 0444);
88 MODULE_PARM_DESC(compat,
1096 sonypi_call1(compat ? 0x92 : 0x82); in sonypi_enable()
1289 compat ? "on" : "off", in sonypi_display_info()
/linux-4.1.27/net/ipv4/netfilter/
DKconfig192 This is a backwards-compat option for the user's convenience
211 This is a backwards-compat option for the user's convenience
286 This is a backwards-compat option for the user's convenience
295 This is a backwards-compat option for the user's convenience
Darp_tables.c887 const int *len, int compat) in get_info() argument
904 if (compat) in get_info()
915 if (compat) { in get_info()
940 if (compat) in get_info()
1116 unsigned int len, int compat) in do_add_counters() argument
1134 if (compat) { in do_add_counters()
1148 if (compat) { in do_add_counters()
Dip_tables.c1075 const int *len, int compat) in get_info() argument
1092 if (compat) in get_info()
1103 if (compat) { in get_info()
1129 if (compat) in get_info()
1304 unsigned int len, int compat) in do_add_counters() argument
1322 if (compat) { in do_add_counters()
1336 if (compat) { in do_add_counters()
/linux-4.1.27/arch/powerpc/kernel/
Dprom_init.c1810 char compat[256]; in prom_find_machine_type() local
1819 compat, sizeof(compat)-1); in prom_find_machine_type()
1821 compat[len] = 0; in prom_find_machine_type()
1823 char *p = &compat[i]; in prom_find_machine_type()
1854 compat, sizeof(compat)-1); in prom_find_machine_type()
1857 if (strcmp(compat, "chrp")) in prom_find_machine_type()
Dvio.c1218 ids->compat)) in vio_match_device()
/linux-4.1.27/Documentation/infiniband/
Dsysfs.txt65 hca_type - HCA type: "MT23108", "MT25208 (MT23108 compat mode)",
/linux-4.1.27/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt21 compat remote)
/linux-4.1.27/Documentation/video4linux/
Dhauppauge-wintv-cx88-ir.txt21 compat remote)
/linux-4.1.27/net/ipv6/netfilter/
Dip6_tables.c1088 const int *len, int compat) in get_info() argument
1105 if (compat) in get_info()
1116 if (compat) { in get_info()
1142 if (compat) in get_info()
1317 int compat) in do_add_counters() argument
1335 if (compat) { in do_add_counters()
1349 if (compat) { in do_add_counters()
DKconfig166 This is a backwards-compat option for the user's convenience
/linux-4.1.27/arch/mips/include/asm/mach-cavium-octeon/
Dkernel-entry-init.h24 # a1 = argv (kseg0 compat addr)
/linux-4.1.27/fs/dlm/
Duser.c690 static int copy_result_to_user(struct dlm_user_args *ua, int compat, in copy_result_to_user() argument
726 if (compat) in copy_result_to_user()
750 if (compat) { in copy_result_to_user()
/linux-4.1.27/Documentation/networking/
Dgen_stats.txt53 compatibility by calling the compat wrappers to keep providing the
/linux-4.1.27/scripts/mod/
Ddevicetable-offsets.c89 DEVID_FIELD(vio_device_id, compat); in main()
Dfile2alias.c675 DEF_FIELD_ADDR(symval, vio_device_id, compat); in do_vio_entry()
678 (*compat)[0] ? *compat : "*"); in do_vio_entry()
/linux-4.1.27/Documentation/x86/
Dentry_64.txt21 - ia32_syscall: int 0x80 from 32-bit or 64-bit code; compat syscall
/linux-4.1.27/arch/powerpc/boot/dts/fsl/
Dmpc8536si-post.dtsi173 /* mark compat w/8572 to get some erratum treatment */
/linux-4.1.27/Documentation/ioctl/
Dbotching-up-ioctls.txt27 will need to add a a 32-bit compat layer:
51 With the joys of writing a compat layer avoided we can take a look at the basic
/linux-4.1.27/Documentation/dvb/
Dfaq.txt141 - v4l1-compat: backward compatibility layer for Video4Linux-1 legacy
/linux-4.1.27/Documentation/laptops/
Dsonypi.txt74 compat: uses some compatibility code for enabling the sonypi
/linux-4.1.27/arch/powerpc/platforms/powermac/
Dfeature.c2635 static void __init probe_one_macio(const char *name, const char *compat, int type) in probe_one_macio() argument
2645 if (!compat) in probe_one_macio()
2647 if (of_device_is_compatible(node, compat)) in probe_one_macio()
/linux-4.1.27/drivers/platform/x86/
Dsony-laptop.c101 static int compat; /* = 0 */ variable
102 module_param(compat, int, 0444);
103 MODULE_PARM_DESC(compat,
4560 sony_pic_call1(compat ? 0x92 : 0x82); in sony_pic_enable()
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype161 # this is temp to handle compat with arch=ppc
/linux-4.1.27/drivers/scsi/aacraid/
Dcommctrl.c442 response.compat = 1; in check_revision()
Daacraid.h1879 u32 compat; member
/linux-4.1.27/include/uapi/linux/
DKbuild240 header-y += libc-compat.h
/linux-4.1.27/fs/ext4/
Dsuper.c3242 int compat, incompat; in set_journal_csum_feature_set() local
3247 compat = 0; in set_journal_csum_feature_set()
3251 compat = JBD2_FEATURE_COMPAT_CHECKSUM; in set_journal_csum_feature_set()
3261 compat, 0, in set_journal_csum_feature_set()
3266 compat, 0, in set_journal_csum_feature_set()
Dext4.h2478 __u32 compat);
/linux-4.1.27/drivers/mtd/maps/
DKconfig26 bool "Physmap compat support"
/linux-4.1.27/tools/perf/
Ddesign.txt290 __u32 compat_version; /* lowest version this is compat with */
/linux-4.1.27/drivers/scsi/mpt3sas/
Dmpt3sas_ctl.c2189 u8 compat) in _ctl_ioctl_main() argument
2233 if (compat) { in _ctl_ioctl_main()
/linux-4.1.27/drivers/scsi/mpt2sas/
Dmpt2sas_ctl.c2154 u8 compat) in _ctl_ioctl_main() argument
2196 if (compat) { in _ctl_ioctl_main()
/linux-4.1.27/drivers/hwmon/
DKconfig1188 tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
1198 tristate "Sensiron humidity and temperature sensors. SHT21 and compat."
1208 tristate "Sensiron humidity and temperature sensors. SHTC1 and compat."
/linux-4.1.27/drivers/misc/
DKconfig112 website <http://www-03.ibm.com/systems/info/x86servers/serverproven/compat/us/>
/linux-4.1.27/arch/arm64/
DKconfig403 When running a compat (AArch32) userspace on an affected Cortex-A53
/linux-4.1.27/include/net/
Dxfrm.h1336 char *compat; member
/linux-4.1.27/Documentation/filesystems/
DLocking152 compat), but that's an accident of bad API; s_umount is used to pin
/linux-4.1.27/Documentation/
Dkernel-parameters.txt2823 compat Treat PCIe ports as PCI-to-PCI bridges, disable the PCIe