Searched refs:mod (Results 126 - 150 of 447) sorted by relevance

1234567891011>>

/linux-master/net/ethtool/
H A Dbitset.c30 * @mod: set if bitmap was modified
35 bool *mod)
51 *mod = true;
57 *mod = true;
65 *mod = true;
72 *mod = true;
122 * @mod: set to true if bitmap is modified, preserve if not
125 * the rest untouched. If destination bitmap was modified, set @mod to true,
129 const u32 *value, const u32 *mask, bool *mod)
140 *mod
34 ethnl_bitmap32_clear(u32 *dst, unsigned int start, unsigned int end, bool *mod) argument
128 ethnl_bitmap32_update(u32 *dst, unsigned int nbits, const u32 *value, const u32 *mask, bool *mod) argument
429 ethnl_update_bitset32_verbose(u32 *bitmap, unsigned int nbits, const struct nlattr *attr, struct nlattr **tb, ethnl_string_array_t names, struct netlink_ext_ack *extack, bool *mod) argument
552 ethnl_update_bitset32(u32 *bitmap, unsigned int nbits, const struct nlattr *attr, ethnl_string_array_t names, struct netlink_ext_ack *extack, bool *mod) argument
771 ethnl_update_bitset(unsigned long *bitmap, unsigned int nbits, const struct nlattr *attr, ethnl_string_array_t names, struct netlink_ext_ack *extack, bool *mod) argument
825 ethnl_update_bitset(unsigned long *bitmap, unsigned int nbits, const struct nlattr *attr, ethnl_string_array_t names, struct netlink_ext_ack *extack, bool *mod) argument
[all...]
H A Dmm.c190 bool mod = false; local
200 &mod);
201 ethnl_update_u32(&cfg.verify_time, tb[ETHTOOL_A_MM_VERIFY_TIME], &mod);
202 ethnl_update_bool(&cfg.tx_enabled, tb[ETHTOOL_A_MM_TX_ENABLED], &mod);
204 &mod);
206 tb[ETHTOOL_A_MM_TX_MIN_FRAG_SIZE], &mod);
208 if (!mod)
H A Ddebug.c88 bool mod = false; local
95 netif_msg_class_names, info->extack, &mod);
96 if (ret < 0 || !mod)
H A Dwol.c110 bool mod = false; local
116 info->extack, &mod);
132 tb[ETHTOOL_A_WOL_SOPASS], &mod);
135 if (!mod)
H A Dchannels.c113 bool mod = false, mod_combined = false; local
126 &mod);
128 &mod);
130 tb[ETHTOOL_A_CHANNELS_OTHER_COUNT], &mod);
133 mod |= mod_combined;
134 if (!mod)
/linux-master/drivers/md/
H A DMakefile6 dm-mod-y += dm.o dm-table.o dm-target.o dm-linear.o dm-stripe.o \
30 md-mod-y += md.o md-bitmap.o
44 obj-$(CONFIG_BLK_DEV_MD) += md-mod.o
48 obj-$(CONFIG_BLK_DEV_DM) += dm-mod.o
84 dm-mod-objs += dm-init.o
88 dm-mod-objs += dm-uevent.o
92 dm-mod-objs += dm-zone.o
96 dm-mod-objs += dm-ima.o
108 dm-mod-objs += dm-audit.o
/linux-master/lib/crypto/mpi/
H A Dmpi-pow.c22 * RES = BASE ^ EXP mod MOD
24 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod) argument
42 msize = mod->nlimbs;
44 msign = mod->sign;
53 /* Exponent is zero, result is 1 mod MOD, i.e., 1 or 0
55 res->nlimbs = (msize == 1 && mod->d[0] == 1) ? 0 : 1;
73 mod_shift_cnt = count_leading_zeros(mod->d[msize - 1]);
75 mpihelp_lshift(mp, mod->d, msize, mod_shift_cnt);
77 MPN_COPY(mp, mod->d, msize);
H A DMakefile24 mpi-mod.o \
/linux-master/arch/x86/kernel/
H A Dcallthunks.c99 struct module *mod; local
102 mod = __module_address((unsigned long)addr);
103 if (mod && within_module_core((unsigned long)addr, mod))
341 struct module *mod)
344 .base = (unsigned long)mod->mem[MOD_TEXT].base,
345 .end = (unsigned long)mod->mem[MOD_TEXT].base + mod->mem[MOD_TEXT].size,
346 .name = mod->name,
340 callthunks_patch_module_calls(struct callthunk_sites *cs, struct module *mod) argument
/linux-master/arch/riscv/kernel/
H A Dftrace.c97 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, argument
115 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec) argument
120 out = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
/linux-master/tools/virtio/
H A DMakefile2 all: test mod
23 mod:
51 .PHONY: all test mod clean vhost oot oot-clean oot-build
/linux-master/arch/loongarch/kernel/
H A Dunwind_orc.c90 struct module *mod; local
92 mod = __module_address(ip);
93 if (!mod || !mod->arch.orc_unwind || !mod->arch.orc_unwind_ip)
96 return __orc_find(mod->arch.orc_unwind_ip, mod->arch.orc_unwind, mod->arch.num_orcs, ip);
242 void unwind_module_init(struct module *mod, void *_orc_ip, size_t orc_ip_size, argument
264 mod
[all...]
/linux-master/kernel/
H A Dtracepoint.c571 bool trace_module_has_bad_taint(struct module *mod) argument
573 return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) |
640 static int tracepoint_module_coming(struct module *mod) argument
644 if (!mod->num_tracepoints)
652 if (trace_module_has_bad_taint(mod))
658 tp_mod->mod = mod;
668 static void tracepoint_module_going(struct module *mod) argument
672 if (!mod->num_tracepoints)
677 if (tp_mod->mod
704 struct module *mod = data; local
[all...]
/linux-master/drivers/scsi/bfa/
H A Dbfa_svc.c394 claim_fcxps_mem(struct bfa_fcxp_mod_s *mod) argument
399 fcxp = (struct bfa_fcxp_s *) bfa_mem_kva_curp(mod);
400 memset(fcxp, 0, sizeof(struct bfa_fcxp_s) * mod->num_fcxps);
402 INIT_LIST_HEAD(&mod->fcxp_req_free_q);
403 INIT_LIST_HEAD(&mod->fcxp_rsp_free_q);
404 INIT_LIST_HEAD(&mod->fcxp_active_q);
405 INIT_LIST_HEAD(&mod->fcxp_req_unused_q);
406 INIT_LIST_HEAD(&mod->fcxp_rsp_unused_q);
408 mod->fcxp_list = fcxp;
410 for (i = 0; i < mod
473 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
494 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
600 struct bfa_fcxp_mod_s *mod = fcxp->fcxp_mod; local
654 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
907 struct bfa_fcxp_mod_s *mod = fcxp->fcxp_mod; local
919 struct bfa_fcxp_mod_s *mod = fcxp->fcxp_mod; local
934 struct bfa_fcxp_mod_s *mod = fcxp->fcxp_mod; local
956 struct bfa_fcxp_mod_s *mod = fcxp->fcxp_mod; local
1050 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
1077 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
1118 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
1126 struct bfa_fcxp_mod_s *mod = BFA_FCXP_MOD(bfa); local
1463 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1495 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1516 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1570 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1597 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1612 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1637 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); local
1650 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); local
1832 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1903 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1914 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
1934 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(bfa); local
4796 struct bfa_rport_mod_s *mod = BFA_RPORT_MOD(bfa); local
4835 struct bfa_rport_mod_s *mod = BFA_RPORT_MOD(bfa); local
4849 bfa_rport_alloc(struct bfa_rport_mod_s *mod) argument
4863 struct bfa_rport_mod_s *mod = BFA_RPORT_MOD(rport->bfa); local
5020 struct bfa_rport_mod_s *mod = BFA_RPORT_MOD(bfa); local
5162 struct bfa_sgpg_mod_s *mod = BFA_SGPG_MOD(bfa); local
5224 struct bfa_sgpg_mod_s *mod = BFA_SGPG_MOD(bfa); local
5244 struct bfa_sgpg_mod_s *mod = BFA_SGPG_MOD(bfa); local
5276 struct bfa_sgpg_mod_s *mod = BFA_SGPG_MOD(bfa); local
5302 struct bfa_sgpg_mod_s *mod = BFA_SGPG_MOD(bfa); local
5608 struct bfa_uf_mod_s *mod = BFA_UF_MOD(bfa); local
[all...]
/linux-master/drivers/media/test-drivers/vivid/
H A Dvivid-radio-common.c108 int mod = 16000; local
110 int sig_qual, sig_qual_tx = mod;
117 mod /= 10;
120 sig_qual = (dev->radio_rx_freq + delta) % mod - delta;
/linux-master/arch/arm/include/asm/
H A Dmodule.h39 u32 get_module_plt(struct module *mod, unsigned long loc, Elf32_Addr val);
/linux-master/include/sound/
H A Dseq_device.h68 struct module *mod);
/linux-master/include/linux/
H A Dnotifier.h126 #define _SRCU_NOTIFIER_HEAD(name, mod) \
128 mod struct srcu_notifier_head name = \
132 #define _SRCU_NOTIFIER_HEAD(name, mod) \
133 mod struct srcu_notifier_head name = \
/linux-master/net/tipc/
H A Dcore.h180 static inline u16 mod(u16 x) function
187 return mod(right - left) < 32768u;
197 return less_eq(left, right) && (mod(right) != mod(left));
/linux-master/tools/perf/util/
H A Ddebuginfo.h15 Dwfl_Module *mod; member in struct:debuginfo
/linux-master/arch/mips/include/asm/
H A Djump_label.h19 extern void jump_label_apply_nops(struct module *mod);
/linux-master/tools/testing/selftests/livepatch/test_modules/
H A Dtest_klp_atomic_replace.c37 .mod = THIS_MODULE,
/linux-master/sound/aoa/core/
H A Dalsa.c16 int aoa_alsa_init(char *name, struct module *mod, struct device *dev) argument
25 err = snd_card_new(dev, index, name, mod, sizeof(struct aoa_card),
/linux-master/include/crypto/internal/
H A Decc.h208 * @mod: modulus
211 void vli_mod_inv(u64 *result, const u64 *input, const u64 *mod,
220 * @mod: modulus
223 * Note: Assumes that mod is big enough curve order.
226 const u64 *mod, unsigned int ndigits);
/linux-master/drivers/most/
H A Dconfigfs.c414 struct module *mod; member in struct:most_common
433 if (!try_module_get(mc->mod)) {
466 module_put(mc->mod);
592 struct module *mod; member in struct:most_sound
608 if (!try_module_get(ms->mod))
612 module_put(ms->mod);
625 module_put(ms->mod);
654 most_cdev.mod = c->mod;
657 most_net.mod
[all...]

Completed in 253 milliseconds

1234567891011>>