/freebsd/usr.bin/netstat/ |
H A D | mroute6.c | 103 struct mf6c mfc; in mroute6pr() local 170 kread((u_long)mfcp, (char *)&mfc, sizeof(mfc)); in mroute6pr() 185 routename(sin6tosa(&mfc.mf6c_origin), in mroute6pr() 188 routename(sin6tosa(&mfc.mf6c_mcastgrp), in mroute6pr() 191 (uintmax_t)mfc.mf6c_pkt_cnt); in mroute6pr() 193 for (waitings = 0, rtep = mfc.mf6c_stall; rtep; ) { in mroute6pr() 201 if (mfc.mf6c_parent == MF6C_INCOMPLETE_PARENT) in mroute6pr() 204 xo_emit(" {:parent/%3d} ", mfc.mf6c_parent); in mroute6pr() 207 if (IF_ISSET(mifi, &mfc.mf6c_ifset)) in mroute6pr() 213 mfcp = mfc.mf6c_next; in mroute6pr()
|
H A D | mroute.c | 75 static void print_mfc(struct mfc *, int, int *); 166 print_mfc(struct mfc *m, int maxvif, int *banner_printed) in print_mfc() 240 struct mfc *m; in mroutepr() 336 struct mfc *mfctable; in mroutepr() 369 LIST_HEAD(, mfc) *mfchashtbl; in mroutepr() 371 struct mfc mfc; in mroutepr() local 391 kread((u_long)m, (char *)&mfc, sizeof(mfc)); in mroutepr()
|
/freebsd/sys/netinet/ |
H A D | ip_mroute.c | 185 VNET_DEFINE_STATIC(LIST_HEAD(mfchashhdr, mfc)*, mfchashtbl); 327 static void expire_mfc(struct mfc *); 333 static int ip_mdq(struct mbuf *, struct ifnet *, struct mfc *, vifi_t); 335 static __inline struct mfc * 341 struct mbuf *, struct mfc *); 343 struct mbuf *, struct mfc *); 345 struct mbuf *, struct mfc *); 374 static __inline struct mfc * 377 struct mfc *rt; in mfc_find() 396 static __inline struct mfc * [all …]
|
H A D | ip_mroute.h | 86 struct mfc; 275 struct mfc { struct 276 LIST_ENTRY(mfc) mfc_hash; 334 struct mfc *bm_mfc; /* the corresponding mfc */
|
/freebsd/sys/contrib/device-tree/src/arm/samsung/ |
H A D | exynos-mfc-reserved-memory.dtsi | 14 mfc_left: region-mfc-left { 21 mfc_right: region-mfc-right { 30 &mfc {
|
H A D | exynos5800.dtsi | 155 &mfc { 156 compatible = "samsung,mfc-v8";
|
H A D | exynos3250.dtsi | 159 bus_mfc: bus-mfc { 659 mfc: codec@13400000 { label 660 compatible = "samsung,exynos3250-mfc", "samsung,mfc-v7"; 663 clock-names = "mfc", "sclk_mfc";
|
H A D | s5pv210.dtsi | 452 mfc: codec@f1700000 { label 453 compatible = "samsung,mfc-v5"; 458 clock-names = "mfc", "sclk_mfc";
|
H A D | exynos4412-smdk4412.dts | 14 #include "exynos-mfc-reserved-memory.dtsi"
|
H A D | exynos4412-itop-scp-core.dtsi | 18 #include "exynos-mfc-reserved-memory.dtsi" 472 &mfc {
|
H A D | exynos4210-smdkv310.dts | 17 #include "exynos-mfc-reserved-memory.dtsi"
|
H A D | exynos5420.dtsi | 113 bus_mfc: bus-mfc { 301 mfc: codec@11000000 { label 302 compatible = "samsung,mfc-v7"; 306 clock-names = "mfc";
|
H A D | exynos4.dtsi | 437 mfc: codec@13400000 { label 438 compatible = "samsung,mfc-v5"; 443 clock-names = "mfc", "sclk_mfc";
|
H A D | exynos4210-origen.dts | 19 #include "exynos-mfc-reserved-memory.dtsi"
|
H A D | exynos5250.dtsi | 318 mfc: codec@11000000 { label 319 compatible = "samsung,mfc-v6"; 324 clock-names = "mfc";
|
H A D | exynos4210.dtsi | 140 bus_mfc: bus-mfc {
|
H A D | exynos4412-odroid-common.dtsi | 13 #include "exynos-mfc-reserved-memory.dtsi"
|
H A D | exynos5260.dtsi | 197 compatible = "samsung,exynos5260-clock-mfc";
|
H A D | exynos4412-origen.dts | 17 #include "exynos-mfc-reserved-memory.dtsi"
|
H A D | exynos4x12.dtsi | 124 bus_mfc: bus-mfc {
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | exynos5260-clock.txt | 58 7) "samsung,exynos5260-clock-mfc" 115 Input clocks for mfc clock controller: 172 compatible = "samsung,exynos5260-clock-mfc";
|
H A D | exynos5433-clock.txt | 42 - "samsung,exynos5433-cmu-mfc" - clock controller compatible for CMU_MFC 145 Input clocks for mfc clock controller: 409 compatible = "samsung,exynos5433-cmu-mfc";
|
/freebsd/sys/netinet6/ |
H A D | ip6_mroute.c | 1308 struct mf6c *mfc, **nptr; in expire_upcalls() local 1317 while ((mfc = *nptr) != NULL) { in expire_upcalls() 1318 rte = mfc->mf6c_stall; in expire_upcalls() 1325 mfc->mf6c_expire != 0 && in expire_upcalls() 1326 --mfc->mf6c_expire == 0) { in expire_upcalls() 1328 ip6_sprintf(ip6bufo, &mfc->mf6c_origin.sin6_addr), in expire_upcalls() 1329 ip6_sprintf(ip6bufg, &mfc->mf6c_mcastgrp.sin6_addr)); in expire_upcalls() 1343 *nptr = mfc->mf6c_next; in expire_upcalls() 1344 free(mfc, M_MRTABLE6); in expire_upcalls() 1346 nptr = &mfc->mf6c_next; in expire_upcalls()
|
/freebsd/sys/contrib/device-tree/src/arm64/tesla/ |
H A D | fsd.dtsi | 489 compatible = "tesla,fsd-clock-mfc"; 973 mfc: mfc@12880000 { label 974 compatible = "tesla,fsd-mfc"; 977 clock-names = "mfc";
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/ |
H A D | exynos5433.dtsi | 576 compatible = "samsung,exynos5433-cmu-mfc"; 1274 mfc: codec@152e0000 { label 1275 compatible = "samsung,exynos5433-mfc";
|