pkarashchenko commented on code in PR #12588: URL: https://github.com/apache/nuttx/pull/12588#discussion_r1664630268
########## arch/x86_64/include/intel64/arch.h: ########## @@ -226,8 +226,10 @@ # define MSR_X2APIC_ICR_DEASSERT 0x00000000 # define MSR_X2APIC_ICR_LEVEL 0x00008000 /* Level triggered */ # define MSR_X2APIC_ICR_BCAST 0x00080000 /* Send to all APICs, including self. */ +# define MSR_X2APIC_ICR_OTHERS 0x000c0000 /* Send to all APICs, excluding self. */ # define MSR_X2APIC_ICR_BUSY 0x00001000 # define MSR_X2APIC_ICR_FIXED 0x00000000 +# define MSR_X2APIC_DESTINATION(d) ((d) << 32ul) Review Comment: why `ul` is used for shift value? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
