[MODERATED] Re: [PATCH v6 1/9] TAAv6 1
Pawan Gupta <[email protected]>
| Newsgroups | org.kernel.lore.historical-speck |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Oct 15, 2019 at 02:54:04PM +0200, speck for Thomas Gleixner wrote: > On Wed, 9 Oct 2019, speck for Pawan Gupta wrote: > > On Wed, Oct 09, 2019 at 04:34:01PM -0700, speck for Pawan Gupta wrote: > > > On Wed, Oct 09, 2019 at 04:22:56PM -0700, speck for Pawan Gupta wrote: > > > > Transactional Synchronization Extensions (TSX) may be used on certain > > > > processors as part of a speculative side channel attack. A microcode > > > > update for existing processors that are vulnerable to this attack will > > > > add a new MSR, IA32_TSX_CTRL to allow the system administrator the > > > > option to disable TSX as one of the possible mitigations. [Note that > > > > future processors that are not vulnerable will also support the > > > > IA32_TSX_CTRL MSR]. Add defines for the new IA32_TSX_CTRL MSR and its > > > > bits. > > > > > > For some reason the "From:" and the "Subject:" lines are not getting > > > copied to the body. I am using the same "speckify-gitmail" script. > > > > > > $ git format-patch --cover-letter -n --thread -v6 -o ../v6 --to [email protected] v5.3..HEAD > > > $ speckify-gitmail -s "TAAv6" v6 speck > > > > > > Let me see whats wrong and re-send the series. Sorry for the trouble. > > > > Speckify-gitmail script is doing the right thing. Dumping the message body > > content just before gpg.encrypt() shows the correct "From:" and "Subject:". I > > don't know where it is getting stripped off. > > > > Thanks, > > Pawan > > > > --- a/speckify-gitmail > > +++ b/speckify-gitmail > > @@ -105,6 +105,7 @@ for f in sorted(infiles): > > content = 'From: %s\n' %mfrom > > Can you try to insert a blank newline before the From:? > > content = '\nFrom: %s\n' %mfrom Thanks, "\n" fixed it. -Pawan