/Linux-v6.1/drivers/net/ethernet/atheros/ |
D | ag71xx.c | 402 static bool ag71xx_is(struct ag71xx *ag, enum ag71xx_type type) in ag71xx_is() argument 404 return ag->dcfg->type == type; in ag71xx_is() 407 static void ag71xx_wr(struct ag71xx *ag, unsigned int reg, u32 value) in ag71xx_wr() argument 409 iowrite32(value, ag->mac_base + reg); in ag71xx_wr() 411 (void)ioread32(ag->mac_base + reg); in ag71xx_wr() 414 static u32 ag71xx_rr(struct ag71xx *ag, unsigned int reg) in ag71xx_rr() argument 416 return ioread32(ag->mac_base + reg); in ag71xx_rr() 419 static void ag71xx_sb(struct ag71xx *ag, unsigned int reg, u32 mask) in ag71xx_sb() argument 423 r = ag->mac_base + reg; in ag71xx_sb() 429 static void ag71xx_cb(struct ag71xx *ag, unsigned int reg, u32 mask) in ag71xx_cb() argument [all …]
|
/Linux-v6.1/kernel/sched/ |
D | autogroup.c | 49 struct autogroup *ag = container_of(kref, struct autogroup, kref); in autogroup_destroy() local 53 ag->tg->rt_se = NULL; in autogroup_destroy() 54 ag->tg->rt_rq = NULL; in autogroup_destroy() 56 sched_release_group(ag->tg); in autogroup_destroy() 57 sched_destroy_group(ag->tg); in autogroup_destroy() 60 static inline void autogroup_kref_put(struct autogroup *ag) in autogroup_kref_put() argument 62 kref_put(&ag->kref, autogroup_destroy); in autogroup_kref_put() 65 static inline struct autogroup *autogroup_kref_get(struct autogroup *ag) in autogroup_kref_get() argument 67 kref_get(&ag->kref); in autogroup_kref_get() 68 return ag; in autogroup_kref_get() [all …]
|
/Linux-v6.1/fs/xfs/ |
D | xfs_filestream.c | 25 xfs_agnumber_t ag; /* AG in use for this directory */ member 87 xfs_filestream_put_ag(mp, item->ag); in xfs_fstrm_free_func() 88 trace_xfs_filestream_free(mp, mru->key, item->ag); in xfs_fstrm_free_func() 109 xfs_agnumber_t ag, max_ag = NULLAGNUMBER; in xfs_filestream_pick_ag() local 117 ag = startag; in xfs_filestream_pick_ag() 124 trace_xfs_filestream_scan(mp, ip->i_ino, ag); in xfs_filestream_pick_ag() 126 pag = xfs_perag_get(mp, ag); in xfs_filestream_pick_ag() 143 max_ag = ag; in xfs_filestream_pick_ag() 152 if (xfs_filestream_get_ag(mp, ag) > 1) { in xfs_filestream_pick_ag() 153 xfs_filestream_put_ag(mp, ag); in xfs_filestream_pick_ag() [all …]
|
D | xfs_icache.c | 1021 xfs_agnumber_t ag = 0; in xfs_reclaim_inodes_count() local 1024 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) { in xfs_reclaim_inodes_count() 1025 ag = pag->pag_agno + 1; in xfs_reclaim_inodes_count()
|
/Linux-v6.1/fs/jfs/ |
D | jfs_extent.c | 306 int ag; in extBalloc() local 340 ag = BLKTOAG(daddr, sbi); in extBalloc() 343 atomic_inc(&bmp->db_active[ag]); in extBalloc() 344 ji->active_ag = ag; in extBalloc() 345 } else if (ji->active_ag != ag) { in extBalloc() 347 atomic_inc(&bmp->db_active[ag]); in extBalloc() 348 ji->active_ag = ag; in extBalloc()
|
D | jfs_imap.c | 1699 int ag, rc; in diAllocAny() local 1706 for (ag = agno + 1; ag <= maxag; ag++) { in diAllocAny() 1707 AG_LOCK(imap, ag); in diAllocAny() 1709 rc = diAllocAG(imap, ag, dir, ip); in diAllocAny() 1711 AG_UNLOCK(imap, ag); in diAllocAny() 1719 for (ag = 0; ag < agno; ag++) { in diAllocAny() 1720 AG_LOCK(imap, ag); in diAllocAny() 1722 rc = diAllocAG(imap, ag, dir, ip); in diAllocAny() 1724 AG_UNLOCK(imap, ag); in diAllocAny()
|
/Linux-v6.1/drivers/infiniband/core/ |
D | security.c | 674 struct ib_mad_agent *ag; in ib_mad_agent_security_change() local 677 list_for_each_entry(ag, in ib_mad_agent_security_change() 680 WRITE_ONCE(ag->smp_allowed, in ib_mad_agent_security_change() 681 !security_ib_endport_manage_subnet(ag->security, in ib_mad_agent_security_change() 682 dev_name(&ag->device->dev), ag->port_num)); in ib_mad_agent_security_change()
|
/Linux-v6.1/tools/testing/selftests/tc-testing/ |
D | tdc.py | 470 ag = parser.add_argument_group( 487 ag.add_argument( 490 ag.add_argument( 493 ag.add_argument(
|
/Linux-v6.1/fs/xfs/libxfs/ |
D | xfs_bmap.c | 3176 xfs_agnumber_t ag, in xfs_bmap_longest_free_extent() argument 3185 pag = xfs_perag_get(mp, ag); in xfs_bmap_longest_free_extent() 3245 xfs_agnumber_t ag, startag; in xfs_bmap_btalloc_nullfb() local 3252 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno); in xfs_bmap_btalloc_nullfb() 3254 startag = ag = 0; in xfs_bmap_btalloc_nullfb() 3257 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, in xfs_bmap_btalloc_nullfb() 3262 if (++ag == mp->m_sb.sb_agcount) in xfs_bmap_btalloc_nullfb() 3263 ag = 0; in xfs_bmap_btalloc_nullfb() 3264 if (ag == startag) in xfs_bmap_btalloc_nullfb() 3279 xfs_agnumber_t ag; in xfs_bmap_btalloc_filestreams() local [all …]
|
/Linux-v6.1/arch/x86/events/intel/ |
D | uncore_snbep.c | 3807 pmu_iio_set_mapping(struct intel_uncore_type *type, struct attribute_group *ag) in pmu_iio_set_mapping() argument 3842 ag->attrs = attrs; in pmu_iio_set_mapping() 3859 pmu_iio_cleanup_mapping(struct intel_uncore_type *type, struct attribute_group *ag) in pmu_iio_cleanup_mapping() argument 3861 struct attribute **attr = ag->attrs; in pmu_iio_cleanup_mapping() 3868 kfree(attr_to_ext_attr(*ag->attrs)); in pmu_iio_cleanup_mapping() 3869 kfree(ag->attrs); in pmu_iio_cleanup_mapping() 3870 ag->attrs = NULL; in pmu_iio_cleanup_mapping()
|
/Linux-v6.1/arch/alpha/ |
D | Kconfig | 212 <http://www.unix-ag.org/Linux-Alpha/Architectures/LX164.html>. 456 <http://www.unix-ag.org/Linux-Alpha/Architectures/Avanti.html>.
|
/Linux-v6.1/Documentation/RCU/ |
D | RTFP.txt | 1040 https://lore.kernel.org/r/Pine.LNX.4.44.0405222141260.11106-100000@dbl.q-ag.de (cpu_quiet() patch) 1041 https://lore.kernel.org/r/200405250535.i4P5ZJo8017583@dbl.q-ag.de (0/5) 1042 https://lore.kernel.org/r/200405250535.i4P5ZKAQ017591@dbl.q-ag.de (1/5) 1044 https://lore.kernel.org/r/200405250535.i4P5ZLiR017599@dbl.q-ag.de (2/5) 1045 https://lore.kernel.org/r/200405250535.i4P5ZMFt017607@dbl.q-ag.de (3/5) 1046 https://lore.kernel.org/r/200405250535.i4P5ZN6g017615@dbl.q-ag.de (4/5) 1047 https://lore.kernel.org/r/200405250535.i4P5ZO7I017623@dbl.q-ag.de (5/5)
|
/Linux-v6.1/arch/arm64/boot/dts/qcom/ |
D | sc8280xp.dtsi | 438 lpass_noc: interconnect-lpass-ag-noc { 439 compatible = "qcom,sc8280xp-lpass-ag-noc";
|
D | sm8350.dtsi | 1586 compatible = "qcom,sm8350-lpass-ag-noc";
|
D | sm8450.dtsi | 3270 compatible = "qcom,sm8450-lpass-ag-noc";
|
D | sc7280.dtsi | 2423 compatible = "qcom,sc7280-lpass-ag-noc";
|
/Linux-v6.1/Documentation/networking/device_drivers/wifi/intel/ |
D | ipw2200.rst | 230 5 802.11ag (2915 only)
|
/Linux-v6.1/Documentation/filesystems/ |
D | xfs-self-describing-metadata.rst | 210 - short btree blocks have a 32 bit owner (ag number) and a 32 bit block
|
/Linux-v6.1/arch/s390/tools/ |
D | opcodes.txt | 737 e308 ag RXY_RRRD
|
/Linux-v6.1/drivers/infiniband/hw/hfi1/ |
D | mad.c | 4209 static inline void set_aggr_error(struct opa_aggregate *ag) in set_aggr_error() argument 4211 ag->err_reqlength |= cpu_to_be16(0x8000); in set_aggr_error()
|
/Linux-v6.1/arch/mips/ |
D | Kconfig | 392 DECstation porting pages on <http://decstation.unix-ag.org/>.
|
/Linux-v6.1/ |
D | CREDITS | 1116 E: engel@unix-ag.org
|