On Sat, Jun 01, 2024 at 04:11:32AM +, Michael Kelley wrote:
> From: Aditya Nagesh Sent: Friday, May 31,
> 2024 3:49 AM
> >
> > Fix issues reported by checkpatch.pl script in hv.c and
> > balloon.c
> > - Remove unnecessary parentheses
> > - Remove extra newlines
> > - Remove extra spaces
>
From: Thomas Gleixner Sent: Wednesday, June 5, 2024 7:20 AM
>
> On Wed, Jun 05 2024 at 13:45, Michael Kelley wrote:
> > From: Thomas Gleixner Sent: Wednesday, June 5, 2024
> > 6:20 AM
> >
> > In /proc/interrupts, the double-counting isn't a problem, and is
> > potentially helpful as you say. Bu
From: Michael Kelley
A Linux guest on Hyper-V gets the TSC frequency from a synthetic MSR, if
available. In this case, set X86_FEATURE_TSC_KNOWN_FREQ so that Linux
doesn't unnecessarily do refined TSC calibration when setting up the TSC
clocksource.
With this change, a message such as this is no
On Wed, Jun 05 2024 at 13:45, Michael Kelley wrote:
> From: Thomas Gleixner Sent: Wednesday, June 5, 2024 6:20
> AM
>
> In /proc/interrupts, the double-counting isn't a problem, and is
> potentially helpful as you say. But /proc/stat, for example, shows a total
> interrupt count, which will be ro
From: Thomas Gleixner Sent: Wednesday, June 5, 2024 6:20 AM
>
> On Tue, Jun 04 2024 at 23:03, Michael Kelley wrote:
> > From: Thomas Gleixner Sent: Tuesday, June 4, 2024
> > 11:14 AM
> >>1) Move the inner workings of handle_percpu_irq() out into
> >> a static function which returns th
On Tue, Jun 04 2024 at 23:03, Michael Kelley wrote:
> From: Thomas Gleixner Sent: Tuesday, June 4, 2024 11:14
> AM
>>1) Move the inner workings of handle_percpu_irq() out into
>> a static function which returns the 'handled' value and
>> share it between the two handler functions.