HomeSort by: relevance | last modified time | path
    Searched refs:llc (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_llc.h 14 void intel_llc_enable(struct intel_llc *llc);
15 void intel_llc_disable(struct intel_llc *llc);
selftest_llc.h 14 int st_llc_verify(struct intel_llc *llc);
intel_llc.c 27 static struct intel_gt *llc_to_gt(struct intel_llc *llc)
29 return container_of(llc, struct intel_gt, llc);
52 static bool get_ia_constants(struct intel_llc *llc,
55 struct drm_i915_private *i915 = llc_to_gt(llc)->i915;
56 struct intel_rps *rps = &llc_to_gt(llc)->rps;
64 intel_uncore_read(llc_to_gt(llc)->uncore, DCLK) & 0xf;
79 static void calc_ia_freq(struct intel_llc *llc,
85 struct drm_i915_private *i915 = llc_to_gt(llc)->i915;
125 static void gen6_update_ring_freq(struct intel_llc *llc)
    [all...]
selftest_llc.c 16 static int gen6_verify_ring_freq(struct intel_llc *llc)
18 struct drm_i915_private *i915 = llc_to_gt(llc)->i915;
24 wakeref = intel_runtime_pm_get(llc_to_gt(llc)->uncore->rpm);
26 if (!get_ia_constants(llc, &consts)) {
34 struct intel_rps *rps = &llc_to_gt(llc)->rps;
39 calc_ia_freq(llc, gpu_freq, &consts, &ia_freq, &ring_freq);
73 intel_runtime_pm_put(llc_to_gt(llc)->uncore->rpm, wakeref);
77 int st_llc_verify(struct intel_llc *llc)
81 if (HAS_LLC(llc_to_gt(llc)->i915))
82 err = gen6_verify_ring_freq(llc);
    [all...]
selftest_gt_pm.c 45 err = st_llc_verify(&gt->llc);
47 pr_err("llc state not restored upon resume!\n");
intel_gt_types.h 77 struct intel_llc llc; member in struct:intel_gt
intel_gt_pm.c 220 intel_llc_enable(&gt->llc);
319 intel_llc_disable(&gt->llc);
debugfs_gt_pm.c 480 seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(i915)));
519 DEFINE_GT_DEBUGFS_ATTRIBUTE(llc);
601 { "llc", &llc_fops, llc_eval },
  /src/sys/netatalk/
aarp.c 167 struct llc *llc; local in function:aarpwhohas
205 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
209 llc = mtod(m, struct llc *);
210 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
211 llc->llc_control = LLC_UI;
212 memcpy(llc->llc_org_code, aarp_org_code, sizeof(aarp_org_code));
213 llc->llc_ether_type = htons(ETHERTYPE_AARP)
347 struct llc *llc; local in function:at_aarpinput
581 struct llc *llc; local in function:aarpprobe
    [all...]
  /src/sys/net/
if_llc.h 45 struct llc { struct
96 __CTASSERT(sizeof(struct llc) == 8);
114 * Don't use sizeof(struct llc_un) for LLC header sizes
122 * Unnumbered LLC format commands
142 * Supervisory LLC commands
162 * LLC XID definitions from 802.2, as needed
if_ethersubr.c 373 * llc header.
376 struct llc llc; local in function:ether_output
378 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
385 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
386 llc.llc_control = LLC_UI;
387 memcpy(llc.llc_snap_org_code, at_org_code,
388 sizeof(llc.llc_snap_org_code));
389 llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK)
534 struct llc *llc = (struct llc *)(eh + 1); local in function:altq_etherclassify
    [all...]
if_bridge.c 2722 struct llc llc1;
2731 * Check for SNAP/LLC.
2734 struct llc *llc2 = (struct llc *)(eh1 + 1);
2777 m_copydata(*mp, 0, sizeof(struct llc), (void *) &llc1);
2778 m_adj(*mp, sizeof(struct llc));
2815 M_PREPEND(*mp, sizeof(struct llc), M_DONTWAIT);
2818 bcopy(&llc1, mtod(*mp, void *), sizeof(struct llc));
  /src/sys/net80211/
ieee80211_output.c 411 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc))
423 * header and prepending an LLC header. This means we know
425 * sizeof(struct ether_header) - sizeof(struct llc)
537 struct llc *llc; local in function:ieee80211_encap
598 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
599 llc = mtod(m, struct llc *);
600 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP
    [all...]
ieee80211_input.c 943 struct llc *llc; local in function:ieee80211_decap
945 if (m->m_len < hdrlen + sizeof(*llc) &&
946 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
952 llc = (struct llc *)(mtod(m, char *) + hdrlen);
953 if (llc->llc_dsap == LLC_SNAP_LSAP &&
954 llc->llc_ssap == LLC_SNAP_LSAP &&
955 llc->llc_control == LLC_UI &&
956 llc->llc_snap.org_code[0] == 0 &
    [all...]
  /src/sys/dev/ic/
awi.c 661 len += sizeof(struct llc) -
1193 sizeof(struct llc);
2017 struct llc *llc; local in function:awi_ether_modcap
2028 m_adj(m, sizeof(eh) - sizeof(*llc));
2033 llc = (struct llc *)(mtod(m, char *) + sizeof(wh));
2034 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
2035 llc->llc_control = LLC_UI
    [all...]
an.c 38 * Copyright (c) 2004, 2005 Dayton Data Center Services, LLC. All
773 /* insert payload length in front of llc/snap */
783 * with longer than 1500 bytes in length into LLC/SNAP.
785 * 1508 bytes including LLC/SNAP and will be inserted
786 * additional LLC/SNAP header with 1501-1508 in its
788 * So we skip LLC/SNAP header and force firmware to
789 * convert it to LLC/SNAP again.
791 m_adj(m, sizeof(struct llc));
  /src/sys/dev/pcmcia/
if_malo_pcmcia.c 1029 /* remove the LLC / SNAP header */
1031 i = (ETHER_ADDR_LEN * 2) + sizeof(struct llc);
1033 rxdesc->pkglen -= sizeof(struct llc);
if_ray.c 1138 /* don't support llc for windows compat operation */
1146 /* adjust for LLC/SNAP header */
1181 /* if not using crummy E2 in 802.11 make it LLC/SNAP */
1462 if (pktlen < sizeof(*frame) + sizeof(struct llc)) {
1463 RAY_DPRINTF(("%s: pkt too small for llc (%ld)\n",
1507 * This is a mess.. we should support other LLC frame types
  /src/tests/usr.bin/netpgpverify/
t_netpgpverify.sh 3560 pcJzobayfXZFZggaozxuS1tTan0/llc/KbVqxeLlmDHIRvA4id8uqcmTtxf70CmJ

Completed in 35 milliseconds