Home
last modified time | relevance | path

Searched refs:mpath (Results 1 – 25 of 26) sorted by relevance

12

/openbmc/linux/net/mac80211/
H A Dmesh_hwmp.c449 if (mpath) { in hwmp_route_info_get()
503 mpath->exp_time = time_after(mpath->exp_time, exp_time) in hwmp_route_info_get()
529 if (mpath) { in hwmp_route_info_get()
553 mpath->exp_time = time_after(mpath->exp_time, exp_time) in hwmp_route_info_get()
680 da = (mpath && mpath->is_root) ? in hwmp_preq_frame_process()
739 if (mpath) in hwmp_prep_frame_process()
795 if (mpath) { in hwmp_perr_frame_process()
1072 if (!mpath) in mesh_path_start_discovery()
1122 target_flags, mpath->dst, mpath->sn, da, 0, in mesh_path_start_discovery()
1265 if (!mpath || !(mpath->flags & MESH_PATH_ACTIVE)) in mesh_nexthop_lookup()
[all …]
H A Dmesh_pathtbl.c249 if (mpath && mpath_expired(mpath)) { in mpath_lookup()
254 return mpath; in mpath_lookup()
289 if (!mpath) in __mesh_path_lookup_by_idx()
297 return mpath; in __mesh_path_lookup_by_idx()
359 mpath->dst, mpath->sdata->u.mesh.num_gates); in mesh_path_add_gate()
385 mpath->dst, mpath->sdata->u.mesh.num_gates); in mesh_gate_del()
557 build.mpath = mpath; in mesh_fast_tx_cache()
628 if (entry->mpath == mpath) in mesh_fast_tx_flush_mpath()
700 if (!mpath) in mesh_path_add()
783 mpath->dst, mpath->sn, in mesh_plink_broken()
[all …]
H A Dmesh.h185 struct mesh_path *mpath, *mppath; member
324 int mesh_path_add_gate(struct mesh_path *mpath);
325 int mesh_path_send_to_gates(struct mesh_path *mpath);
351 void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta);
352 void mesh_path_flush_pending(struct mesh_path *mpath);
353 void mesh_path_tx_pending(struct mesh_path *mpath);
370 struct sk_buff *skb, struct mesh_path *mpath);
374 void mesh_fast_tx_flush_mpath(struct mesh_path *mpath);
378 struct mesh_path *mpath, const u8 *addr);
407 static inline void mesh_path_activate(struct mesh_path *mpath) in mesh_path_activate() argument
[all …]
H A Dcfg.c2237 struct mesh_path *mpath; in ieee80211_add_mpath() local
2250 if (IS_ERR(mpath)) { in ieee80211_add_mpath()
2252 return PTR_ERR(mpath); in ieee80211_add_mpath()
2277 struct mesh_path *mpath; in ieee80211_change_mpath() local
2291 if (!mpath) { in ieee80211_change_mpath()
2327 pinfo->sn = mpath->sn; in mpath_set_pinfo()
2353 struct mesh_path *mpath; in ieee80211_get_mpath() local
2359 if (!mpath) { in ieee80211_get_mpath()
2380 if (!mpath) { in ieee80211_dump_mpath()
2410 if (!mpath) { in ieee80211_get_mpp()
[all …]
H A Dtx.c2595 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL; in ieee80211_build_hdr() local
2689 mpath = mesh_path_lookup(sdata, skb->data); in ieee80211_build_hdr()
2690 if (mpath) { in ieee80211_build_hdr()
2692 next_hop = rcu_dereference(mpath->next_hop); in ieee80211_build_hdr()
2694 !(mpath->flags & (MESH_PATH_ACTIVE | in ieee80211_build_hdr()
2705 if (mppath && mpath) in ieee80211_build_hdr()
2706 mesh_path_del(sdata, mpath->dst); in ieee80211_build_hdr()
2732 else if (mpath) in ieee80211_build_hdr()
2733 mesh_da = mpath->dst; in ieee80211_build_hdr()
H A Dmesh.c816 sta = rcu_dereference(entry->mpath->next_hop); in ieee80211_mesh_xmit_fast()
854 entry->mpath->dst, sdata->vif.addr); in ieee80211_mesh_xmit_fast()
H A Drx.c2751 sta = rcu_dereference(entry->mpath->next_hop); in ieee80211_rx_mesh_fast_forward()
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dmanifest.py84 mfilename = mpath = m_entry = {}
93 mpath[k] = os.path.join(mdir, mfilename[k])
94 if not os.path.isfile(mpath[k]):
96 self.classname, mpath[k]))
98 m_entry[k] = ManifestEntry(mpath[k])
139 mpath = os.path.join(mdir, mfilename)
140 if not os.path.isfile(mpath): raise IOError
141 m_entry = ManifestEntry(mpath)
/openbmc/linux/drivers/s390/cio/
H A Ddevice_pgid.c38 int mpath = cdev->private->flags.mpath; in verify_done() local
44 if (sch->config.mp != mpath) { in verify_done()
45 sch->config.mp = mpath; in verify_done()
186 if (cdev->private->flags.mpath) in pgid_wipeout_start()
210 if (cdev->private->flags.mpath) in spid_do()
245 if (cdev->private->flags.mpath) { in spid_callback()
247 cdev->private->flags.mpath = 0; in spid_callback()
426 cdev->private->flags.mpath = 0; in snid_done()
566 cdev->private->flags.mpath = cdev->private->options.mpath; in ccw_device_verify_start()
583 cdev->private->flags.mpath = 0; in disband_callback()
[all …]
H A Dio_sch.h154 unsigned int mpath:1; /* do multipathing */ member
164 unsigned int mpath:1; /* multipathing is set up */ member
H A Ddevice_ops.c51 cdev->private->options.mpath = (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options_mask()
80 cdev->private->options.mpath |= (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options()
97 cdev->private->options.mpath &= (flags & CCWDEV_DO_MULTIPATH) == 0; in ccw_device_clear_options()
120 return cdev->private->flags.mpath; in ccw_device_is_multipath()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/libblockdev/
H A Dlibblockdev_3.1.1.bb23 PACKAGECONFIG ??= "python3 lvm lvm-dbus dm parted fs escrow btrfs crypto mdraid mpath nvdimm tools"
36 PACKAGECONFIG[mpath] = "--with-mpath,--without-mpath, multipath-tools, lvm2"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/multipath-tools/files/
H A D0006-RH-add-wwids-from-kernel-cmdline-mpath.wwids-with-A.patch4 Subject: [PATCH 06/12] RH: add wwids from kernel cmdline mpath.wwids with -A
7 /proc/cmdline for mpath.wwid=<WWID> options, and adds any wwids it finds
61 + while((ptr = strstr(next, "mpath.wwid="))) {
73 + condlog(0, "empty mpath.wwid kernel command line option");
H A D0001-RH-fixup-udev-rules-for-redhat.patch58 $(Q)$(INSTALL_PROGRAM) -m 644 11-dm-mpath.rules $(DESTDIR)$(udevrulesdir)
59 $(Q)$(INSTALL_PROGRAM) -m 644 99-z-dm-mpath-late.rules $(DESTDIR)$(udevrulesdir)
66 $(Q)$(RM) $(DESTDIR)$(udevrulesdir)/99-z-dm-mpath-late.rules
H A D0005-RH-add-mpathconf.patch53 $(Q)$(INSTALL_PROGRAM) -m 644 11-dm-mpath.rules $(DESTDIR)$(udevrulesdir)
54 $(Q)$(INSTALL_PROGRAM) -m 644 99-z-dm-mpath-late.rules $(DESTDIR)$(udevrulesdir)
171 + if [[ "$1" =~ ^part[[:digit:]]+-mpath- ]] ; then
172 + add_wwid "${1##part*-mpath-}"
173 + elif [[ "$1" =~ ^mpath- ]] ; then
174 + add_wwid "${1##mpath-}"
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dpluginbase.py57 mpath = os.path.join(ppath, fname)
58 logger.debug("loading plugin module %s", mpath)
59 spec = importlib.util.spec_from_file_location(mname, mpath)
/openbmc/qemu/hw/audio/
H A Dwm8750.c54 uint8_t path[4], mpath[2], power, format; member
297 s->mpath[0] = 0; in wm8750_reset()
298 s->mpath[1] = 0; in wm8750_reset()
498 s->mpath[0] = (value >> 8) & 1; /* LD2MO */ in wm8750_tx()
504 s->mpath[1] = (value >> 8) & 1; /* RD2MO */ in wm8750_tx()
614 VMSTATE_UINT8_ARRAY(mpath, WM8750State, 2),
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/multipath-tools/
H A Dmultipath-tools_0.9.8.bb11 mpath device. It processes management requests from callers and hides \
40 file://0006-RH-add-wwids-from-kernel-cmdline-mpath.wwids-with-A.patch \
98 ${D}${nonarch_base_libdir}/udev/rules.d/11-dm-mpath.rules
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Ddm-uevent.rst90 DM_UUID=mpath-35333333000002328
107 DM_UUID=mpath-35333333000002328
/openbmc/qemu/scripts/coverity-scan/
H A Drun-coverity-scan430 --enable-mpath --enable-glusterfs \
/openbmc/linux/drivers/md/
H A DMakefile9 dm-multipath-y += dm-path-selector.o dm-mpath.o
/openbmc/qemu/scripts/
H A Dmeson-buildoptions.sh400 --enable-mpath) printf "%s" -Dmpath=enabled ;;
401 --disable-mpath) printf "%s" -Dmpath=disabled ;;
/openbmc/qemu/
H A Dmeson_options.txt161 option('mpath', type : 'feature', value : 'auto', feature
H A Dmeson.build137 get_option('mpath') \
1306 if host_os == 'linux' and have_tools and get_option('mpath').allowed()
1325 required: get_option('mpath'))
1330 required: get_option('mpath'))
1333 required: get_option('mpath'))
1348 if get_option('mpath').enabled()
/openbmc/qemu/tests/data/qobject/
H A Dqdict.txt4584 dm-mpath.c: 37626
4585 dm-mpath.h: 415

12