lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250207102320-55575f30-68fd-4aa3-93a0-d97173253471@linutronix.de>
Date: Fri, 7 Feb 2025 10:25:14 +0100
From: Thomas Weißschuh <thomas.weissschuh@...utronix.de>
To: David Woodhouse <dwmw2@...radead.org>
Cc: Mateusz Polchlopek <mateusz.polchlopek@...el.com>, 
	Richard Cochran <richardcochran@...il.com>, Andrew Lunn <andrew+netdev@...n.ch>, 
	"David S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, 
	Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>, netdev@...r.kernel.org, 
	linux-kernel@...r.kernel.org, stable@...r.kernel.org, 
	"Mohamed Abuelfotoh, Hazem" <abuehaze@...zon.com>
Subject: Re: [PATCH net-next 0/4] ptp: vmclock: bugfixes and cleanups for
 error handling

On Fri, Feb 07, 2025 at 09:10:42AM +0000, David Woodhouse wrote:
> On Fri, 2025-02-07 at 08:13 +0100, Mateusz Polchlopek wrote:
> > 
> > 
> > On 2/6/2025 6:45 PM, Thomas Weißschuh wrote:
> > > Some error handling issues I noticed while looking at the code.
> > > 
> > > Only compile-tested.
> > > 
> > > Signed-off-by: Thomas Weißschuh <thomas.weissschuh@...utronix.de>
> > > ---
> > > Thomas Weißschuh (4):
> > >        ptp: vmclock: Set driver data before its usage
> > >        ptp: vmclock: Don't unregister misc device if it was not registered
> > >        ptp: vmclock: Clean up miscdev and ptp clock through devres
> > >        ptp: vmclock: Remove goto-based cleanup logic
> > > 
> > >   drivers/ptp/ptp_vmclock.c | 46 ++++++++++++++++++++--------------------------
> > >   1 file changed, 20 insertions(+), 26 deletions(-)
> > > ---
> > > base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b
> > > change-id: 20250206-vmclock-probe-57cbcb770925
> > > 
> > > Best regards,
> > 
> > As those all are fixes and cleanups then I think it should be tagged to
> > net not net-next.
> 
> Agreed. Thanks, Thomas. For all four:

Ack.


> Reviewed-by: David Woodhouse <dwmw@...zon.co.uk>

Thanks.

> I'm about to post a fifth which adds a .owner to vmclock_miscdev_fops.

I assume you want me to include this in my series.

> Tested with the existing '-device vmclock' support in QEMU, plus this
> hack to actually expose a PTP clock to the guest (which we haven't
> worked out how to do *properly* from the timekeeping subsystem of a
> Linux host yet; qv).
> 
> --- a/hw/acpi/vmclock.c
> +++ b/hw/acpi/vmclock.c
> @@ -151,6 +151,18 @@ static void vmclock_realize(DeviceState *dev,
> Error **errp)
>  
>      qemu_register_reset(vmclock_handle_reset, vms);
>  
> +	vms->clk->time_type = VMCLOCK_TIME_TAI;
> +    vms->clk->flags = VMCLOCK_FLAG_TAI_OFFSET_VALID;
> +    vms->clk->tai_offset_sec = -3600;
> +    vms->clk->clock_status = VMCLOCK_STATUS_SYNCHRONIZED;
> +    vms->clk->counter_value = 0;
> +    vms->clk->counter_id = VMCLOCK_COUNTER_X86_TSC;
> +    vms->clk->time_sec = 1704067200;
> +    vms->clk->time_frac_sec = 0x8000000000000000ULL;
> +    vms->clk->counter_period_frac_sec = 0x1a6e39b3e0ULL;
> +    vms->clk->counter_period_shift = 4;
> +    //vms->clk->counter_period_frac_sec = 0x1934c67f9b2ce6ULL;
> +
>      vmclock_update_guest(vms);
>  }
>  
> 



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ