On Tue, Dec 10, 2024 at 07:58:34PM +, Michael Kelley wrote:
> From: mhkelle...@gmail.com Sent: Wednesday, October 2,
> 2024 8:53 PM
> >
> > Code specific to Hyper-V guests currently assumes the cpu_possible_mask
> > is "dense" -- i.e., all bit positions 0 thru (nr_cpu_ids - 1) are set,
> > w
From: mhkelle...@gmail.com Sent: Wednesday, October 2,
2024 8:53 PM
>
> Code specific to Hyper-V guests currently assumes the cpu_possible_mask
> is "dense" -- i.e., all bit positions 0 thru (nr_cpu_ids - 1) are set,
> with no "holes". Therefore, num_possible_cpus() is assumed to be equal
> to n
On Tue, Dec 10, 2024 at 06:34:28PM +, Wei Liu wrote:
> On Mon, Dec 09, 2024 at 07:39:10PM -0800, Saurabh Singh Sengar wrote:
> > On Mon, Dec 09, 2024 at 06:46:42PM +, Wei Liu wrote:
> > > On Mon, Dec 09, 2024 at 12:30:35AM -0800, Saurabh Singh Sengar wrote:
> > > > On Mon, Dec 09, 2024 at 1
On Mon, Dec 09, 2024 at 07:39:10PM -0800, Saurabh Singh Sengar wrote:
> On Mon, Dec 09, 2024 at 06:46:42PM +, Wei Liu wrote:
> > On Mon, Dec 09, 2024 at 12:30:35AM -0800, Saurabh Singh Sengar wrote:
> > > On Mon, Dec 09, 2024 at 12:44:22AM +, Wei Liu wrote:
> > > > On Wed, Oct 23, 2024 at 0
On 12/7/2024 7:01 PM, Michael Kelley wrote:
> From: Nuno Das Neves Sent: Friday,
> December 6, 2024 2:22 PM
>>
>> Make hv_current_partition_id available in both x86_64 and arm64.
>> This feature isn't specific to x86_64 and will be needed by common
>> code.
>>
>> While at it, replace the BUG()s w
On Mon, Dec 09, 2024 at 12:57:49PM -0500, Maxim Levitsky wrote:
> Fix 2 minor memory leaks in the mana driver,
> introduced by commit
>
> 8afefc361209 ("net: mana: Assigning IRQ affinity on HT cores")
>
> Best regards,
> Maxim Levitsky
>
> Maxim Levitsky (2):
> net: mana: Fix memory leak
On Mon, Dec 9, 2024 at 11:29 PM Maxim Levitsky wrote:
>
> gc->irq_contexts is not freeded if one of the later operations
> fail.
>
> Suggested-by: Michael Kelley
> Fixes: 8afefc361209 ("net: mana: Assigning IRQ affinity on HT cores")
> Signed-off-by: Maxim Levitsky
LGTM
Reviewed-by: Kalesh AP
On Mon, Dec 9, 2024 at 11:28 PM Maxim Levitsky wrote:
>
> Commit 8afefc361209 ("net: mana: Assigning IRQ affinity on HT cores")
> added memory allocation in mana_gd_setup_irqs of 'irqs' but the code
> doesn't free this temporary array in the success path.
>
> This was caught by kmemleak.
>
> Fixes