Home
last modified time | relevance | path

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

/linux-4.4.14/arch/x86/entry/
Dsyscall_32.c10 #define SYM(sym, compat) compat argument
12 #define SYM(sym, compat) sym argument
15 #define __SYSCALL_I386(nr, sym, compat) extern asmlinkage long SYM(sym, compat)(unsigned long, unsi… argument
19 #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 long sym(unsigned long, unsigned long, unsi… argument
21 #define __SYSCALL_64(nr, sym, compat) [nr] = sym, argument
/linux-4.4.14/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.4.14/drivers/vfio/platform/
Dvfio_platform_private.h60 const char *compat; member
81 char *compat; member
100 extern void vfio_platform_unregister_reset(const char *compat,
105 .compat = __compat, \
110 #define module_vfio_reset_handler(compat, reset) \ argument
111 MODULE_ALIAS("vfio-reset:" compat); \
114 vfio_platform_register_reset(compat, reset); \
119 vfio_platform_unregister_reset(compat, reset); \
Dvfio_platform_common.c33 static vfio_platform_reset_fn_t vfio_platform_lookup_reset(const char *compat, in vfio_platform_lookup_reset() argument
41 if (!strcmp(iter->compat, compat) && in vfio_platform_lookup_reset()
54 vdev->reset = vfio_platform_lookup_reset(vdev->compat, in vfio_platform_get_reset()
57 request_module("vfio-reset:%s", vdev->compat); in vfio_platform_get_reset()
58 vdev->reset = vfio_platform_lookup_reset(vdev->compat, in vfio_platform_get_reset()
556 ret = device_property_read_string(dev, "compatible", &vdev->compat); in vfio_platform_probe_common()
607 void vfio_platform_unregister_reset(const char *compat, in vfio_platform_unregister_reset() argument
614 if (!strcmp(iter->compat, compat) && (iter->reset == fn)) { in vfio_platform_unregister_reset()
/linux-4.4.14/drivers/of/
Ddevice.c181 const char *compat; in of_device_get_modalias() local
193 compat = of_get_property(dev->of_node, "compatible", &cplen); in of_device_get_modalias()
194 if (!compat) in of_device_get_modalias()
198 for (i = (cplen - 1); i >= 0 && !compat[i]; i--) in of_device_get_modalias()
217 memcpy(&str[csize + 1], compat, cplen); in of_device_get_modalias()
234 const char *compat; in of_device_uevent() local
249 compat = of_get_property(dev->of_node, "compatible", &cplen); in of_device_uevent()
250 while (compat && *compat && cplen > 0) { in of_device_uevent()
251 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
252 sl = strlen(compat) + 1; in of_device_uevent()
[all …]
Dfdt.c91 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
102 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
135 const char *const *compat) in of_fdt_match() argument
139 if (!compat) in of_fdt_match()
142 while (*compat) { in of_fdt_match()
143 tmp = of_fdt_is_compatible(blob, node, *compat); in of_fdt_match()
146 compat++; in of_fdt_match()
680 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
682 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
688 int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
[all …]
Dof_reserved_mem.c193 const char *compat = i->compatible; in __reserved_mem_init_node() local
195 if (!of_flat_dt_is_compatible(rmem->fdt_node, compat)) in __reserved_mem_init_node()
200 rmem->name, compat); in __reserved_mem_init_node()
Dbase.c442 const char *compat, const char *type, const char *name) in __of_device_is_compatible() argument
449 if (compat && compat[0]) { in __of_device_is_compatible()
453 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) { in __of_device_is_compatible()
483 const char *compat) in of_device_is_compatible() argument
489 res = __of_device_is_compatible(device, compat, NULL, NULL); in of_device_is_compatible()
502 int of_machine_is_compatible(const char *compat) in of_machine_is_compatible() argument
509 rc = of_device_is_compatible(root, compat); in of_machine_is_compatible()
/linux-4.4.14/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.4.14/arch/x86/um/
Dsys_call_table_64.c38 #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat) argument
39 #define __SYSCALL_X32(nr, sym, compat) /* Not supported */ argument
41 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage long sym(unsigned long, unsigned long, unsi… argument
45 #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.c28 #define __SYSCALL_I386(nr, sym, compat) extern asmlinkage long sym(unsigned long, unsigned long, un… argument
32 #define __SYSCALL_I386(nr, sym, compat) [ nr ] = sym, argument
/linux-4.4.14/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.4.14/net/xfrm/
Dxfrm_algo.c198 .compat = "md5",
218 .compat = "sha1",
238 .compat = "sha256",
296 .compat = "rmd160",
351 .compat = "cipher_null",
371 .compat = "des",
392 .compat = "des3_ede",
413 .compat = "cast5",
434 .compat = "blowfish",
455 .compat = "aes",
[all …]
/linux-4.4.14/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.4.14/arch/x86/kernel/
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.4.14/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.4.14/arch/x86/entry/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.4.14/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.4.14/arch/mips/mti-malta/
Dmalta-dtshim.c134 const char *compat; in malta_dt_shim() local
147 compat = fdt_getprop(fdt_buf, root_off, "compatible", &len); in malta_dt_shim()
148 if (!compat) in malta_dt_shim()
152 if (strncmp(compat, "mti,malta", len)) in malta_dt_shim()
/linux-4.4.14/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.4.14/include/linux/
Dirqchip.h27 #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) argument
Daio.h18 struct iocb __user *__user *iocbpp, bool compat);
24 bool compat) { return 0; } in do_io_submit() argument
Dof.h247 const char *type, const char *compat);
341 extern int of_machine_is_compatible(const char *compat);
498 const char *compat) in of_find_compatible_node() argument
621 static inline int of_machine_is_compatible(const char *compat) in of_machine_is_compatible() argument
933 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument
936 = { .compatible = compat, \
939 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument
942 = { .compatible = compat, \
949 #define OF_DECLARE_1(table, name, compat, fn) \ argument
950 _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.h246 #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ argument
247 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.h692 #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn) argument
Dmod_devicetable.h243 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.4.14/drivers/clk/
Dclk-qoriq.c77 const char *compat, *guts_compat; member
435 .compat = "fsl,b4420-clockgen",
451 .compat = "fsl,b4860-clockgen",
467 .compat = "fsl,ls1021a-clockgen",
477 .compat = "fsl,ls1043a-clockgen",
492 .compat = "fsl,ls2080a-clockgen",
503 .compat = "fsl,p2041-clockgen",
515 .compat = "fsl,p3041-clockgen",
527 .compat = "fsl,p4080-clockgen",
539 .compat = "fsl,p5020-clockgen",
[all …]
/linux-4.4.14/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.4.14/drivers/staging/wlan-ng/
Dprism2fw.c100 hfa384x_caplevel_t compat; member
1151 s3info[i].info.compat.role, in validate_identity()
1152 s3info[i].info.compat.id, in validate_identity()
1153 s3info[i].info.compat.variant, in validate_identity()
1154 s3info[i].info.compat.bottom, in validate_identity()
1155 s3info[i].info.compat.top); in validate_identity()
1158 if ((s3info[i].info.compat.role == 1) && in validate_identity()
1159 (s3info[i].info.compat.id == 2)) { in validate_identity()
1160 if (s3info[i].info.compat.variant != in validate_identity()
1167 if ((s3info[i].info.compat.role == 1) && in validate_identity()
[all …]
/linux-4.4.14/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()
DMakefile56 obj-$(CONFIG_COMPAT) += compat.o
/linux-4.4.14/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.h59 void imx_aips_allow_unprivileged_access(const char *compat);
Dpm-imx6.c422 const char *compat) in imx6_pm_get_base() argument
428 node = of_find_compatible_node(NULL, NULL, compat); in imx6_pm_get_base()
/linux-4.4.14/net/netfilter/
Dxt_set.c58 ADT_OPT(opt, par->family, info->match_set.u.compat.dim, in set_match_v0()
59 info->match_set.u.compat.flags, 0, UINT_MAX); in set_match_v0()
62 info->match_set.u.compat.flags & IPSET_INV_MATCH); in set_match_v0()
71 info->u.compat.dim = IPSET_DIM_ZERO; in compat_flags()
73 info->u.compat.flags |= IPSET_INV_MATCH; in compat_flags()
75 info->u.compat.dim++; in compat_flags()
77 info->u.compat.flags |= (1 << info->u.compat.dim); in compat_flags()
262 ADT_OPT(add_opt, par->family, info->add_set.u.compat.dim, in set_target_v0()
263 info->add_set.u.compat.flags, 0, UINT_MAX); in set_target_v0()
264 ADT_OPT(del_opt, par->family, info->del_set.u.compat.dim, in set_target_v0()
[all …]
Dx_tables.c776 struct xt_counters_info *info, bool compat) in xt_copy_counters_from_user() argument
782 if (compat) { in xt_copy_counters_from_user()
DKconfig666 This is a backwards-compat option for the user's convenience
793 This is a backwards-compat option for the user's convenience
1051 This is a backwards-compat option for the user's convenience
1236 This is a backwards-compat option for the user's convenience
/linux-4.4.14/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.4.14/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.4.14/drivers/input/
Devdev.c664 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
668 if (compat) { in bits_to_user()
692 unsigned int maxlen, const void __user *p, int compat) in bits_from_user() argument
696 if (compat) { in bits_from_user()
731 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
733 int len = compat ? in bits_to_user()
744 unsigned int maxlen, const void __user *p, int compat) in bits_from_user() argument
746 size_t chunk_size = compat ? sizeof(compat_long_t) : sizeof(long); in bits_from_user()
752 len = compat ? BITS_TO_LONGS_COMPAT(maxbit) : BITS_TO_LONGS(maxbit); in bits_from_user()
765 unsigned int maxlen, void __user *p, int compat) in bits_to_user() argument
[all …]
DMakefile8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
/linux-4.4.14/arch/arm64/kernel/
Dcpuinfo.c107 bool compat = personality(current->personality) == PER_LINUX32; in c_show() local
119 if (compat) in c_show()
134 if (compat) { in c_show()
Dtraps.c58 unsigned long top, bool compat) in dump_mem() argument
63 unsigned int width = compat ? 4 : 8; in dump_mem()
/linux-4.4.14/fs/jbd2/
Djournal.c1758 int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat, in jbd2_journal_check_used_features() argument
1763 if (!compat && !ro && !incompat) in jbd2_journal_check_used_features()
1774 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) && in jbd2_journal_check_used_features()
1793 int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat, in jbd2_journal_check_available_features() argument
1796 if (!compat && !ro && !incompat) in jbd2_journal_check_available_features()
1806 if ((compat & JBD2_KNOWN_COMPAT_FEATURES) == compat && in jbd2_journal_check_available_features()
1826 int jbd2_journal_set_features (journal_t *journal, unsigned long compat, in jbd2_journal_set_features() argument
1832 ((compat & (f)) && !(sb->s_feature_compat & cpu_to_be32(f))) in jbd2_journal_set_features()
1835 if (jbd2_journal_check_used_features(journal, compat, ro, incompat)) in jbd2_journal_set_features()
1838 if (!jbd2_journal_check_available_features(journal, compat, ro, incompat)) in jbd2_journal_set_features()
[all …]
/linux-4.4.14/arch/s390/kernel/
DMakefile56 compat-obj-$(CONFIG_AUDIT) += compat_audit.o
58 obj-$(CONFIG_COMPAT) += compat_wrapper.o $(compat-obj-y)
/linux-4.4.14/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.4.14/drivers/net/ethernet/broadcom/genet/
Dbcmmii.c495 char *compat; in bcmgenet_mii_of_init() local
499 compat = kasprintf(GFP_KERNEL, "brcm,genet-mdio-v%d", priv->version); in bcmgenet_mii_of_init()
500 if (!compat) in bcmgenet_mii_of_init()
503 priv->mdio_dn = of_find_compatible_node(dn, NULL, compat); in bcmgenet_mii_of_init()
504 kfree(compat); in bcmgenet_mii_of_init()
/linux-4.4.14/fs/quota/
DMakefile6 obj-$(CONFIG_QUOTACTL_COMPAT) += compat.o
/linux-4.4.14/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.4.14/ipc/
DMakefile5 obj-$(CONFIG_SYSVIPC_COMPAT) += compat.o
/linux-4.4.14/security/keys/
DMakefile18 obj-$(CONFIG_KEYS_COMPAT) += compat.o
/linux-4.4.14/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()
1666 if (av->compat != vidh->compat) { in self_check_ai()
1667 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.c320 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT; in create_vtbl()
Dfastmap.c125 new->compat = UBI_COMPAT_DELETE; in new_fm_vhdr()
209 av->compat = 0; in add_vol()
/linux-4.4.14/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.4.14/include/uapi/linux/netfilter/
Dxt_set.h24 } compat; member
/linux-4.4.14/fs/
Dexec.c400 const compat_uptr_t __user *compat; member
411 compat_uptr_t compat; in get_user_arg_ptr() local
413 if (get_user(compat, argv.ptr.compat + nr)) in get_user_arg_ptr()
416 return compat_ptr(compat); in get_user_arg_ptr()
1655 .ptr.compat = __argv, in compat_do_execve()
1659 .ptr.compat = __envp, in compat_do_execve()
1671 .ptr.compat = __argv, in compat_do_execveat()
1675 .ptr.compat = __envp, in compat_do_execveat()
Daio.c1386 bool compat, in aio_setup_vectored_rw() argument
1390 if (compat) in aio_setup_vectored_rw()
1404 char __user *buf, size_t len, bool compat) in aio_run_iocb() argument
1437 &iovec, compat, &iter); in aio_run_iocb()
1497 struct iocb *iocb, bool compat) in io_submit_one() argument
1560 compat); in io_submit_one()
1573 struct iocb __user *__user *iocbpp, bool compat) in do_io_submit() argument
1615 ret = io_submit_one(ctx, user_iocb, &tmp, compat); in do_io_submit()
DMakefile34 obj-$(CONFIG_COMPAT) += compat.o compat_ioctl.o
/linux-4.4.14/arch/arm/kernel/
Dentry-common.S298 #define ABI(native, compat) native argument
410 #define ABI(native, compat) compat argument
DMakefile56 obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o
/linux-4.4.14/net/wireless/
DMakefile15 cfg80211-$(CONFIG_CFG80211_WEXT) += wext-compat.o wext-sme.o
/linux-4.4.14/arch/tile/kernel/
DMakefile18 obj-$(CONFIG_COMPAT) += compat.o compat_signal.o
/linux-4.4.14/drivers/media/v4l2-core/
DMakefile11 videodev-objs += v4l2-compat-ioctl32.o
/linux-4.4.14/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.4.14/scripts/
DMakefile.extrawarn46 warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
Dcheckpatch.pl2604 foreach my $compat (@compats) {
2605 my $compat2 = $compat;
2607 my $compat3 = $compat;
2609 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
2612 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2615 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
/linux-4.4.14/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.4.14/Documentation/
Dadding-syscalls.txt297 The compat entry point also needs a corresponding function prototype, in
298 include/linux/compat.h, marked as asmlinkage to match the way that system
304 and 64-bit systems, say struct xyzzy_args, then the include/linux/compat.h
305 header file should also include a compat version of the structure (struct
329 The generic system call list also needs adjusting to allow for the compat
338 - a COMPAT_SYSCALL_DEFINEn(xyzzy, ...) for the compat entry point
339 - corresponding prototype in include/linux/compat.h
340 - (if needed) 32-bit mapping struct in include/linux/compat.h
352 should hit the compat entry point:
Dkernel-parameters.txt2900 compat Treat PCIe ports as PCI-to-PCI bridges, disable the PCIe
/linux-4.4.14/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.4.14/arch/powerpc/kernel/
Dprom_init.c1838 char compat[256]; in prom_find_machine_type() local
1847 compat, sizeof(compat)-1); in prom_find_machine_type()
1849 compat[len] = 0; in prom_find_machine_type()
1851 char *p = &compat[i]; in prom_find_machine_type()
1882 compat, sizeof(compat)-1); in prom_find_machine_type()
1885 if (strcmp(compat, "chrp")) in prom_find_machine_type()
Dvio.c1223 ids->compat)) in vio_match_device()
/linux-4.4.14/net/ipv4/netfilter/
DKconfig206 This is a backwards-compat option for the user's convenience
226 This is a backwards-compat option for the user's convenience
301 This is a backwards-compat option for the user's convenience
310 This is a backwards-compat option for the user's convenience
Darp_tables.c900 const int *len, int compat) in get_info() argument
917 if (compat) in get_info()
928 if (compat) { in get_info()
953 if (compat) in get_info()
1128 unsigned int len, int compat) in do_add_counters() argument
1139 paddc = xt_copy_counters_from_user(user, len, &tmp, compat); in do_add_counters()
Dip_tables.c1085 const int *len, int compat) in get_info() argument
1102 if (compat) in get_info()
1113 if (compat) { in get_info()
1139 if (compat) in get_info()
1311 unsigned int len, int compat) in do_add_counters() argument
1322 paddc = xt_copy_counters_from_user(user, len, &tmp, compat); in do_add_counters()
/linux-4.4.14/Documentation/video4linux/
Dhauppauge-wintv-cx88-ir.txt21 compat remote)
/linux-4.4.14/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt21 compat remote)
/linux-4.4.14/Documentation/infiniband/
Dsysfs.txt65 hca_type - HCA type: "MT23108", "MT25208 (MT23108 compat mode)",
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/
Dkernel-entry-init.h24 # a1 = argv (kseg0 compat addr)
/linux-4.4.14/fs/dlm/
Duser.c687 static int copy_result_to_user(struct dlm_user_args *ua, int compat, in copy_result_to_user() argument
723 if (compat) in copy_result_to_user()
747 if (compat) { in copy_result_to_user()
/linux-4.4.14/net/ipv6/netfilter/
Dip6_tables.c1097 const int *len, int compat) in get_info() argument
1114 if (compat) in get_info()
1125 if (compat) { in get_info()
1151 if (compat) in get_info()
1323 int compat) in do_add_counters() argument
1334 paddc = xt_copy_counters_from_user(user, len, &tmp, compat); in do_add_counters()
DKconfig180 This is a backwards-compat option for the user's convenience
/linux-4.4.14/Documentation/networking/
Dgen_stats.txt53 compatibility by calling the compat wrappers to keep providing the
/linux-4.4.14/scripts/mod/
Ddevicetable-offsets.c91 DEVID_FIELD(vio_device_id, compat); in main()
Dfile2alias.c717 DEF_FIELD_ADDR(symval, vio_device_id, compat); in do_vio_entry()
720 (*compat)[0] ? *compat : "*"); in do_vio_entry()
/linux-4.4.14/include/linux/netfilter/
Dx_tables.h252 struct xt_counters_info *info, bool compat);
/linux-4.4.14/Documentation/DocBook/
Ddevice-drivers.xml.db336 API-class-compat-register
337 API-class-compat-unregister
338 API-class-compat-create-link
339 API-class-compat-remove-link
737 API-snd-ctl-register-ioctl-compat
739 API-snd-ctl-unregister-ioctl-compat
Dalsa-driver-api.xml.db157 API-snd-ctl-register-ioctl-compat
159 API-snd-ctl-unregister-ioctl-compat
Dnetworking.xml.db176 API-gnet-stats-start-copy-compat
/linux-4.4.14/Documentation/x86/
Dentry_64.txt21 - entry_INT80_compat: int 0x80 from 32-bit or 64-bit code; compat syscall
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dmpc8536si-post.dtsi173 /* mark compat w/8572 to get some erratum treatment */
/linux-4.4.14/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.4.14/Documentation/dvb/
Dfaq.txt141 - v4l1-compat: backward compatibility layer for Video4Linux-1 legacy
/linux-4.4.14/Documentation/laptops/
Dsonypi.txt74 compat: uses some compatibility code for enabling the sonypi
/linux-4.4.14/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.4.14/drivers/platform/x86/
Dsony-laptop.c102 static int compat; /* = 0 */ variable
103 module_param(compat, int, 0444);
104 MODULE_PARM_DESC(compat,
4558 sony_pic_call1(compat ? 0x92 : 0x82); in sony_pic_enable()
/linux-4.4.14/drivers/scsi/aacraid/
Dcommctrl.c442 response.compat = 1; in check_revision()
Daacraid.h1892 u32 compat; member
/linux-4.4.14/arch/powerpc/platforms/
DKconfig.cputype150 # this is temp to handle compat with arch=ppc
/linux-4.4.14/fs/ext4/
Dsuper.c2921 int compat, incompat; in set_journal_csum_feature_set() local
2926 compat = 0; in set_journal_csum_feature_set()
2930 compat = JBD2_FEATURE_COMPAT_CHECKSUM; in set_journal_csum_feature_set()
2940 compat, 0, in set_journal_csum_feature_set()
2945 compat, 0, in set_journal_csum_feature_set()
Dext4.h2696 __u32 compat);
/linux-4.4.14/include/uapi/linux/
DKbuild243 header-y += libc-compat.h
/linux-4.4.14/drivers/mtd/maps/
DKconfig26 bool "Physmap compat support"
/linux-4.4.14/tools/perf/
Ddesign.txt290 __u32 compat_version; /* lowest version this is compat with */
/linux-4.4.14/drivers/scsi/mpt3sas/
Dmpt3sas_ctl.c2210 u8 compat, u16 mpi_version) in _ctl_ioctl_main() argument
2264 if (compat) { in _ctl_ioctl_main()
/linux-4.4.14/drivers/misc/
DKconfig112 website <http://www-03.ibm.com/systems/info/x86servers/serverproven/compat/us/>
/linux-4.4.14/drivers/hwmon/
DKconfig1218 tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
1229 tristate "Sensiron humidity and temperature sensors. SHT21 and compat."
1239 tristate "Sensiron humidity and temperature sensors. SHTC1 and compat."
/linux-4.4.14/include/net/
Dxfrm.h1347 char *compat; member
/linux-4.4.14/Documentation/filesystems/
DLocking152 compat), but that's an accident of bad API; s_umount is used to pin
/linux-4.4.14/arch/arm64/
DKconfig348 When running a compat (AArch32) userspace on an affected Cortex-A53