Home
last modified time | relevance | path

Searched refs:roc (Results 1 – 25 of 43) sorted by relevance

12

/openbmc/linux/net/mac80211/
H A Doffchannel.c171 static void ieee80211_roc_notify_destroy(struct ieee80211_roc_work *roc) in ieee80211_roc_notify_destroy() argument
174 if (roc->frame) { in ieee80211_roc_notify_destroy()
175 cfg80211_mgmt_tx_status(&roc->sdata->wdev, roc->mgmt_tx_cookie, in ieee80211_roc_notify_destroy()
176 roc->frame->data, roc->frame->len, in ieee80211_roc_notify_destroy()
178 ieee80211_free_txskb(&roc->sdata->local->hw, roc->frame); in ieee80211_roc_notify_destroy()
181 if (!roc->mgmt_tx_cookie) in ieee80211_roc_notify_destroy()
182 cfg80211_remain_on_channel_expired(&roc->sdata->wdev, in ieee80211_roc_notify_destroy()
183 roc->cookie, roc->chan, in ieee80211_roc_notify_destroy()
186 cfg80211_tx_mgmt_expired(&roc->sdata->wdev, in ieee80211_roc_notify_destroy()
187 roc->mgmt_tx_cookie, in ieee80211_roc_notify_destroy()
[all …]
H A Diface.c205 struct ieee80211_roc_work *roc; in ieee80211_can_powered_addr_change() local
220 list_for_each_entry(roc, &local->roc_list, list) { in ieee80211_can_powered_addr_change()
221 if (roc->sdata != sdata) in ieee80211_can_powered_addr_change()
224 if (roc->started) { in ieee80211_can_powered_addr_change()
/openbmc/linux/arch/arm64/boot/dts/rockchip/
H A DMakefile8 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3308-roc-cc.dtb
25 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3328-roc-cc.dtb
26 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3328-roc-pc.dtb
58 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3399-roc-pc.dtb
59 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3399-roc-pc-mezzanine.dtb
60 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3399-roc-pc-plus.dtb
84 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3566-roc-pc.dtb
99 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3568-roc-pc.dtb
H A Drk3399-roc-pc.dts7 #include "rk3399-roc-pc.dtsi"
11 compatible = "firefly,roc-rk3399-pc", "rockchip,rk3399";
H A Drk3399-roc-pc-plus.dts7 #include "rk3399-roc-pc.dtsi"
11 * 1. rk3399-roc-pc-plus is powered by dc_12v directly.
12 * 2. rk3399-roc-pc-plus has only vcc_bus_typec0 in schematic, which is coresponding
13 * to vcc_vbus_typec1 in rk3399-roc-pc.
27 compatible = "firefly,roc-rk3399-pc-plus", "rockchip,rk3399";
H A Drk3328-roc-pc.dts8 #include "rk3328-roc-cc.dts"
12 compatible = "firefly,roc-rk3328-pc", "rockchip,rk3328";
H A Drk3399-roc-pc-mezzanine.dts8 #include "rk3399-roc-pc.dtsi"
12 compatible = "firefly,roc-rk3399-pc-mezzanine", "rockchip,rk3399";
H A Drk3328-roc-cc.dts10 model = "Firefly roc-rk3328-cc";
11 compatible = "firefly,roc-rk3328-cc", "rockchip,rk3328";
H A Drk3308-roc-cc.dts11 compatible = "firefly,roc-rk3308-cc", "rockchip,rk3308";
H A Drk3568-roc-pc.dts15 compatible = "firefly,rk3568-roc-pc", "rockchip,rk3568";
H A Drk3566-roc-pc.dts12 compatible = "firefly,rk3566-roc-pc", "rockchip,rk3566";
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_rmap.c2766 struct xfs_rmap_ownercount *roc, in xfs_rmap_ownercount_init() argument
2772 memset(roc, 0, sizeof(*roc)); in xfs_rmap_ownercount_init()
2773 roc->results = results; in xfs_rmap_ownercount_init()
2775 roc->low.rm_startblock = bno; in xfs_rmap_ownercount_init()
2776 memset(&roc->high, 0xFF, sizeof(roc->high)); in xfs_rmap_ownercount_init()
2777 roc->high.rm_startblock = bno + len - 1; in xfs_rmap_ownercount_init()
2780 roc->good.rm_startblock = bno; in xfs_rmap_ownercount_init()
2781 roc->good.rm_blockcount = len; in xfs_rmap_ownercount_init()
2782 roc->good.rm_owner = oinfo->oi_owner; in xfs_rmap_ownercount_init()
2783 roc->good.rm_offset = oinfo->oi_offset; in xfs_rmap_ownercount_init()
[all …]
/openbmc/linux/drivers/net/wireless/realtek/rtw89/
H A Dmac80211.c127 rtwvif->roc.state = RTW89_ROC_IDLE; in rtw89_ops_add_interface()
133 INIT_DELAYED_WORK(&rtwvif->roc.roc_work, rtw89_roc_work); in rtw89_ops_add_interface()
183 cancel_delayed_work_sync(&rtwvif->roc.roc_work); in rtw89_ops_remove_interface()
963 struct rtw89_roc *roc = &rtwvif->roc; in rtw89_ops_remain_on_channel() local
970 if (roc->state != RTW89_ROC_IDLE) { in rtw89_ops_remain_on_channel()
979 roc->state = RTW89_ROC_MGMT; in rtw89_ops_remain_on_channel()
981 roc->state = RTW89_ROC_NORMAL; in rtw89_ops_remain_on_channel()
983 roc->duration = duration; in rtw89_ops_remain_on_channel()
984 roc->chan = *chan; in rtw89_ops_remain_on_channel()
985 roc->type = type; in rtw89_ops_remain_on_channel()
[all …]
H A Dcore.c2482 struct rtw89_roc *roc = &rtwvif->roc; in rtw89_roc_start() local
2489 ieee80211_queue_delayed_work(hw, &rtwvif->roc.roc_work, in rtw89_roc_start()
2490 msecs_to_jiffies(rtwvif->roc.duration)); in rtw89_roc_start()
2504 cfg80211_chandef_create(&roc_chan, &roc->chan, NL80211_CHAN_NO_HT); in rtw89_roc_start()
2518 struct rtw89_roc *roc = &rtwvif->roc; in rtw89_roc_end() local
2534 roc->state = RTW89_ROC_IDLE; in rtw89_roc_end()
2550 ieee80211_queue_delayed_work(hw, &roc->roc_work, in rtw89_roc_end()
2557 roc.roc_work.work); in rtw89_roc_work()
2559 struct rtw89_roc *roc = &rtwvif->roc; in rtw89_roc_work() local
2563 switch (roc->state) { in rtw89_roc_work()
/openbmc/qemu/include/hw/i3c/
H A Daspeed_i3c.h105 uint8_t roc:1; /* Response on completion */ member
136 uint8_t roc:1; /* Response on completion */ member
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7921/
H A Dmcu.c607 } __packed roc; in mt7921_mcu_set_roc() member
609 .roc = { in mt7921_mcu_set_roc()
626 req.roc.sco = 1; /* SCA */ in mt7921_mcu_set_roc()
628 req.roc.sco = 3; /* SCB */ in mt7921_mcu_set_roc()
632 req.roc.band = 3; in mt7921_mcu_set_roc()
635 req.roc.band = 2; in mt7921_mcu_set_roc()
638 req.roc.band = 1; in mt7921_mcu_set_roc()
/openbmc/linux/drivers/crypto/caam/
H A Dpdb.h411 u32 roc; member
427 u32 roc; member
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/
H A Dhif.c1692 struct wilc_remain_ch roc; in wilc_remain_on_channel() local
1695 roc.ch = chan; in wilc_remain_on_channel()
1696 roc.expired = expired; in wilc_remain_on_channel()
1697 roc.arg = user_arg; in wilc_remain_on_channel()
1698 roc.duration = duration; in wilc_remain_on_channel()
1699 roc.cookie = cookie; in wilc_remain_on_channel()
1700 result = handle_remain_on_chan(vif, &roc); in wilc_remain_on_channel()
/openbmc/linux/drivers/net/ethernet/intel/igc/
H A Digc_hw.h243 u64 roc; member
/openbmc/linux/drivers/net/ethernet/intel/igb/
H A De1000_hw.h203 u64 roc; member
/openbmc/linux/drivers/net/ethernet/intel/e1000e/
H A Dhw.h416 u64 roc; member
/openbmc/qemu/tests/qtest/
H A Dremote-i3c-test.c147 .roc = 1, in aspeed_i3c_create_xfer_cmd()
/openbmc/qemu/hw/i3c/
H A Daspeed_i3c.c1304 if (cmd.roc) { in aspeed_i3c_device_short_transfer()
1450 if (cmd.roc) { in aspeed_i3c_device_transfer()
1625 if (cmd.roc) { in aspeed_i3c_device_addr_assign_cmd()
/openbmc/linux/drivers/net/ethernet/intel/e1000/
H A De1000_main.c3621 adapter->stats.roc += er32(ROC); in e1000_update_stats()
3694 adapter->stats.ruc + adapter->stats.roc + in e1000_update_stats()
3696 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc; in e1000_update_stats()
4062 if (stats->roc > 0) in e1000_tbi_adjust_stats()
4063 stats->roc--; in e1000_tbi_adjust_stats()
/openbmc/linux/fs/nfs/
H A Dpnfs.c1432 bool layoutreturn = false, roc = false; in pnfs_roc() local
1504 roc = layoutreturn; in pnfs_roc()
1514 if (roc) { in pnfs_roc()

12