Home
last modified time | relevance | path

Searched refs:plid (Results 1 – 25 of 35) sorted by relevance

12

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dphal_service_actions.cpp65 void createGuardRecords(const nlohmann::json& jsonCallouts, uint32_t plid, in createGuardRecords() argument
125 dataIface.createGuardRecord(entityPath, eGuardType, plid); in createGuardRecords()
148 void createDeconfigRecords(const nlohmann::json& jsonCallouts, uint32_t plid) in createDeconfigRecords() argument
190 openpower::phal::pdbg::deconfigureTgt(physBinPath, plid); in createDeconfigRecords()
202 const DataInterfaceBase& dataIface, uint32_t plid) in createServiceActions() argument
205 createGuardRecords(jsonCallouts, plid, dataIface); in createServiceActions()
207 createDeconfigRecords(jsonCallouts, plid); in createServiceActions()
H A Drepository.hpp37 uint32_t plid; member
47 TransmissionState hmcState, uint32_t plid, bool deconfig, in PELAttributes()
51 hmcState(hmcState), plid(plid), deconfig(deconfig), guard(guard), in PELAttributes()
H A Dphal_service_actions.hpp23 const DataInterfaceBase& dataIface, uint32_t plid);
H A Dpel.hpp134 uint32_t plid() const in plid() function in openpower::pels::PEL
136 return _ph->plid(); in plid()
H A Dprivate_header.hpp203 uint32_t plid() const in plid() function in openpower::pels::PrivateHeader
H A Ddata_interface.hpp465 GardType eGardType, uint32_t plid) const = 0;
879 GardType eGardType, uint32_t plid) const override;
H A Drepository.cpp124 pel.plid(), in restore()
187 pel->plid(), in add()
H A Dmanager.cpp213 ad.add("PLID", getNumberString("0x%08X", pel->plid())); in addPEL()
963 varData.emplace("PlatformLogID", attr.plid); in createPELEntry()
H A Ddata_interface.cpp691 GardType eGardType, uint32_t plid) const in createGuardRecord()
696 libguard::create(binPath, plid, eGardType); in createGuardRecord()
/openbmc/linux/net/mac80211/
H A Dmesh_plink.c79 sta->mesh->llid = sta->mesh->plid = sta->mesh->reason = 0; in mesh_plink_fsm_restart()
214 u8 *da, u16 llid, u16 plid, u16 reason) in mesh_plink_frame_tx() argument
304 if (plid) { in mesh_plink_frame_tx()
326 put_unaligned_le16(plid, pos); in mesh_plink_frame_tx()
406 sta->mesh->plid, sta->mesh->reason); in mesh_plink_deactivate()
737 sta->mesh->llid, sta->mesh->plid, reason); in mesh_plink_timer()
992 sta->mesh->llid, sta->mesh->plid, in mesh_plink_fsm()
1000 sta->mesh->plid, 0); in mesh_plink_fsm()
1025 u16 llid, u16 plid) in mesh_plink_get_event() argument
1068 (sta->mesh->plid && sta->mesh->plid != plid)) in mesh_plink_get_event()
[all …]
/openbmc/linux/block/
H A Dblk-cgroup.c116 return pol && test_bit(pol->plid, q->blkcg_pols); in blkcg_policy_enabled()
352 pd->plid = i; in blkg_alloc()
616 __clear_bit(pol->plid, q->blkcg_pols); in blkg_destroy_all()
724 total += prfill(sf, blkg->pd[pol->plid], data); in blkcg_print_blkgs()
1414 cpd->plid = i; in blkcg_css_alloc()
1578 if (blkg->pd[pol->plid]) in blkcg_activate_policy()
1615 pd->plid = pol->plid; in blkcg_activate_policy()
1616 blkg->pd[pol->plid] = pd; in blkcg_activate_policy()
1628 __set_bit(pol->plid, q->blkcg_pols); in blkcg_activate_policy()
1649 pd = blkg->pd[pol->plid]; in blkcg_activate_policy()
[all …]
H A Dblk-cgroup.h138 int plid; member
152 int plid; member
170 int plid; member
277 return blkg ? blkg->pd[pol->plid] : NULL; in blkg_to_pd()
283 return blkcg ? blkcg->cpd[pol->plid] : NULL; in blkcg_to_cpd()
/openbmc/linux/tools/cgroup/
H A Diocost_monitor.py43 plid = prog['blkcg_policy_iocost'].plid.value_() variable
233 if blkg.pd[plid]:
234 root_iocg = container_of(blkg.pd[plid], 'struct ioc_gq', 'pd')
261 if not blkg.pd[plid]:
264 iocg = container_of(blkg.pd[plid], 'struct ioc_gq', 'pd')
/openbmc/openpower-hw-diags/attn/pel/
H A Dprivate_header.cpp37 void PrivateHeader::setPlid(uint32_t plid) in setPlid() argument
39 _plid = plid; in setPlid()
H A Dpel_minimal.cpp112 void PelMinimal::setPlid(uint32_t plid) in setPlid() argument
114 _ph->setPlid(plid); in setPlid()
H A Dprivate_header.hpp112 void setPlid(uint32_t plid);
H A Dpel_minimal.hpp134 void setPlid(uint32_t plid);
/openbmc/openpower-debug-collector/watchdog/
H A Dwatchdog_dbus.cpp91 int plid = 0; in createPel() local
118 plid = std::get<1>(reply); // platform log id is tuple "second" in createPel()
127 return plid; // platform log id or 0 in createPel()
/openbmc/openpower-debug-collector/dump/
H A Dcreate_pel.cpp39 uint32_t plid = 0; in createSbeErrorPEL() local
89 plid = std::get<1>(reply); // platform log id is tuple "second" in createSbeErrorPEL()
106 return plid; in createSbeErrorPEL()
/openbmc/openpower-proc-control/extensions/phal/
H A Dcreate_pel.cpp139 uint32_t plid = 0; in createSbeErrorPEL() local
223 plid = std::get<1>(reply); // platform log id is tuple "second" in createSbeErrorPEL()
239 return plid; in createSbeErrorPEL()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dprivate_header_test.cpp73 EXPECT_EQ(ph.plid(), 0x50515253); in TEST_F()
192 EXPECT_EQ(ph.id(), ph.plid()); in TEST_F()
/openbmc/openpower-occ-control/
H A Docc_ffdc.cpp39 uint32_t plid = 0; in createPEL() local
88 plid = std::get<1>(reply); in createPEL()
95 return plid; in createPEL()
/openbmc/openpower-hw-diags/attn/
H A Dattn_logging.cpp139 auto plid = analyzer::analyzeHardware( in createPelCustom() local
141 if (0 != plid) in createPelCustom()
144 tiPel->setPlid(plid); in createPelCustom()
/openbmc/openpower-hw-diags/util/
H A Ddbus.cpp348 int plid = 0; in createPel() local
382 plid = std::get<1>(reply); // platform log id is tuple "second" in createPel()
391 return plid; // platform log id or 0 in createPel()
/openbmc/qemu/hw/ppc/
H A Dspapr_events.c132 uint32_t plid; member
531 maina->plid = next_plid++; in spapr_init_maina()

12