Skip to content

Commit bc8b699

Browse files
SPRs: fix link formatting
1 parent 11abc59 commit bc8b699

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/blog/2023-11-28-context-switching-sprs-on-powerpc.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@ per-task resource. But, depending on the particular SPR, writing to them can be
148148
_slow_. The highly used data-like SPRs such as LR, CTR (Count Register), etc.,
149149
are possible to [rename](https://en.wikipedia.org/wiki/Register_renaming),
150150
making them comparable to GPRs in terms of read/write performance. But others
151-
that affect the state of large parts of the CPU core, such as the [Data Stream
152-
Control Register (DSCR)](https://docs.kernel.org/next/powerpc/dscr.html), can
153-
take a while for the effects of changing them to be applied. Well, not so slow
154-
that you will notice the occasional access, but there's one case in the kernel
155-
that occurs extremely often and needs to change a lot of these SPRs to support
156-
our per-task abstraction: context switches.
151+
that affect the state of large parts of the CPU core, such as the
152+
[Data Stream Control Register (DSCR)](https://docs.kernel.org/next/powerpc/dscr.html),
153+
can take a while for the effects of changing them to be applied. Well, not so
154+
slow that you will notice the occasional access, but there's one case in the
155+
kernel that occurs extremely often and needs to change a lot of these SPRs to
156+
support our per-task abstraction: context switches.
157157
158158
159159
## Anatomy of a context switch

0 commit comments

Comments
 (0)