aboutsummaryrefslogtreecommitdiff
path: root/freelist.go
diff options
context:
space:
mode:
authorLorenzo Stoakes <lstoakes@gmail.com>2016-07-28 14:25:49 +0100
committerLorenzo Stoakes <lstoakes@gmail.com>2016-07-28 14:25:49 +0100
commit97aba5586d36f9670a77dc6e60ec1b9ef31ce9ae (patch)
tree73a11e42e09b69b082f2de84f59f64b927cf619a /freelist.go
parentMerge pull request #573 from evnix/patch-1 (diff)
downloaddedo-97aba5586d36f9670a77dc6e60ec1b9ef31ce9ae.tar.gz
dedo-97aba5586d36f9670a77dc6e60ec1b9ef31ce9ae.tar.xz
bucket: correct broken unaligned load/store in armv5
armv5 devices and older (i.e. <= arm9 generation) require addresses that are stored to and loaded from to to be 4-byte aligned. If this is not the case the lower 2 bits of the address are cleared and the load is performed in an unexpected order, including up to 3 bytes of data located prior to the address. Inlined buckets are stored after their key in a page and since there is no guarantee that the key will be of a length that is a multiple of 4, it is possible for unaligned load/stores to occur when they are cast back to bucket and page pointer types. The fix adds a new field to track whether the current architecture exhibits this issue, sets it on module load for ARM architectures, and then on bucket open, if this field is set and the address is unaligned, a byte-by-byte copy of the inlined bucket is performed. Ref: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka15414.html
Diffstat (limited to 'freelist.go')
0 files changed, 0 insertions, 0 deletions