Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-18 Thread Jiri Slaby
On 05/15/2018, 08:39 AM, Ingo Molnar wrote: > > * Ingo Molnar wrote: > >> >> * Jiri Slaby wrote: >> >>> We make proper use of SYM_DATA on global data instead of marking them as >>> ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. >>>

Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-18 Thread Jiri Slaby
On 05/15/2018, 08:39 AM, Ingo Molnar wrote: > > * Ingo Molnar wrote: > >> >> * Jiri Slaby wrote: >> >>> We make proper use of SYM_DATA on global data instead of marking them as >>> ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. >>> ENTRY also aligns symbols which

Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-15 Thread Ingo Molnar
* Ingo Molnar wrote: > > * Jiri Slaby wrote: > > > We make proper use of SYM_DATA on global data instead of marking them as > > ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. > > ENTRY also aligns symbols which creates unnecessary

Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-15 Thread Ingo Molnar
* Ingo Molnar wrote: > > * Jiri Slaby wrote: > > > We make proper use of SYM_DATA on global data instead of marking them as > > ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. > > ENTRY also aligns symbols which creates unnecessary holes here between > > data. > > >

Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-14 Thread Ingo Molnar
* Jiri Slaby wrote: > We make proper use of SYM_DATA on global data instead of marking them as > ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. > ENTRY also aligns symbols which creates unnecessary holes here between > data. > > ENTRY from saved_eip in

Re: [PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-14 Thread Ingo Molnar
* Jiri Slaby wrote: > We make proper use of SYM_DATA on global data instead of marking them as > ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. > ENTRY also aligns symbols which creates unnecessary holes here between > data. > > ENTRY from saved_eip in wakeup_32 and

[PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-10 Thread Jiri Slaby
We make proper use of SYM_DATA on global data instead of marking them as ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. ENTRY also aligns symbols which creates unnecessary holes here between data. ENTRY from saved_eip in wakeup_32 and many saved_* in wakeup_64 is simply

[PATCH -resend 02/27] x86: assembly, use SYM_DATA for data

2018-05-10 Thread Jiri Slaby
We make proper use of SYM_DATA on global data instead of marking them as ENTRY. ENTRY is intended for functions and shall be paired with ENDPROC. ENTRY also aligns symbols which creates unnecessary holes here between data. ENTRY from saved_eip in wakeup_32 and many saved_* in wakeup_64 is simply