Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: src/sys/arch/aarch64/aarch64



Module Name:    src
Committed By:   skrll
Date:           Thu Sep  9 08:12:27 UTC 2021

Modified Files:
        src/sys/arch/aarch64/aarch64: pmap.c

Log Message:
In pmap_icache_sync_range change

for (...) {
        ...
        if (condition) {
                // do stuff
        }
}

to

for (...) {
        ...
        if (!conditional)
                continue;
        // do stuff
}

to save on indentation. Same code (modulo register usage) before and
after.


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/aarch64/aarch64/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index