.. | .. |
---|
49 | 49 | # This code schedules 1 blocks at a time, with 4 lanes per block |
---|
50 | 50 | ######################################################################## |
---|
51 | 51 | |
---|
52 | | -#ifdef CONFIG_AS_AVX2 |
---|
53 | 52 | #include <linux/linkage.h> |
---|
54 | 53 | |
---|
55 | 54 | .text |
---|
.. | .. |
---|
570 | 569 | # of SHA512 message blocks. |
---|
571 | 570 | # "blocks" is the message length in SHA512 blocks |
---|
572 | 571 | ######################################################################## |
---|
573 | | -ENTRY(sha512_transform_rorx) |
---|
| 572 | +SYM_FUNC_START(sha512_transform_rorx) |
---|
574 | 573 | # Allocate Stack Space |
---|
575 | 574 | mov %rsp, %rax |
---|
576 | 575 | sub $frame_size, %rsp |
---|
.. | .. |
---|
682 | 681 | |
---|
683 | 682 | # Restore Stack Pointer |
---|
684 | 683 | mov frame_RSPSAVE(%rsp), %rsp |
---|
685 | | - ret |
---|
686 | | -ENDPROC(sha512_transform_rorx) |
---|
| 684 | + RET |
---|
| 685 | +SYM_FUNC_END(sha512_transform_rorx) |
---|
687 | 686 | |
---|
688 | 687 | ######################################################################## |
---|
689 | 688 | ### Binary Data |
---|
.. | .. |
---|
749 | 748 | MASK_YMM_LO: |
---|
750 | 749 | .octa 0x00000000000000000000000000000000 |
---|
751 | 750 | .octa 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF |
---|
752 | | - |
---|
753 | | -#endif |
---|