[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v5] xen/common: add keyhandler to show Xen command line
- To: Jan Beulich <jbeulich@xxxxxxxx>
- From: dmukhin@xxxxxxxx
- Date: Thu, 13 Aug 2026 11:36:17 -0700
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 148.163.138.245) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=ford.com; dmarc=pass (p=reject sp=reject pct=100) action=none header.from=ford.com; dkim=pass (signature was verified) header.d=saarlouis.ford.com; dkim=pass (signature was verified) header.d=ford.com; arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=J93gNFg1w6xPup5L3QkkJfytNmzx+IO6XyrvU4tXMxU=; b=SYDYPmQKvq6/AbxQmvItAw6t4K7K8oaNHjX6dV9QY3m4swaEInenFBlhRDNBQbecWCbHwQ8lEDx2kKDYU0SHlh6YcclSM/wsxOpdDpImSScfFywrhuF5E8OtZ+8P6LVSeeptS0KFNIOFY7LqAEJL2SNGhkTVZotfE2ALnaEH1tlGiSFDe7wT1SROxYbi/e51gwvuUI2wHULK/Udh46JnjU3lSx0/e1HKsItE3v2SLmxYajx06QFPhKS3srMG+U4e5AuE//pU7OAwrq7+f1hLmI925swIuepqvIINPaE2gMXUP+5SznbXXQY4d5MMEu4WjPb6QpH35gJK8RNOYk/2GQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=VjUTI02AYe7ZViRSHRsnmjtpNv2EaV/bssWP/uUMhIqbhO39rtr/k51vvHIuaYK7KmDMke+38KTPsZ3fPfKgF6sdZMsmDVi32l+bQ6oIKZYVfcv2XKDD9FF3W+kvoKVIspQQBQ37NWPMnFfDR4Qu8HveLZFt8OjxnQ9BN4t+1/0r+nFRl5Kt23HSnwwUrZma36/TKCXF+jdMmQNPegQ91uFCBIJr3jsrWui2Ij525OBXSwW8+yJBfUYiBCePdRd4Smx9TTRPD+wyWOyU7Hv12Bu7FnYj5wyj5ChqwX4DTadar7KIlE3EsrN4YCtnpA3v0m2UgK8nDGaW2APTs4vygw==
- Authentication-results: eu.smtp.expurgate.cloud; dkim=pass header.s=ppford header.d=ford.com header.i="@ford.com" header.h="Cc:Content-Type:Date:From:In-Reply-To:Message-ID:MIME-Version:References:Subject:To"; dkim=pass header.s=selector2-azureford-onmicrosoft-com header.d=azureford.onmicrosoft.com header.i="@azureford.onmicrosoft.com" header.h="From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck"; dkim=pass header.s=ppserprodsaar header.d=saarlouis.ford.com header.i="@saarlouis.ford.com" header.h="Cc:Content-Type:Date:From:In-Reply-To:Message-ID:MIME-Version:References:Subject:To"; dkim=pass header.s=ppfserpocford header.d=ford.com header.i="@ford.com" header.h="Cc:Content-Type:Date:From:In-Reply-To:Message-ID:MIME-Version:References:Subject:To"
- Cc: dmukhin@xxxxxxxx, andrew.cooper3@xxxxxxxxxx, anthony.perard@xxxxxxxxxx, julien@xxxxxxx, michal.orzel@xxxxxxx, roger@xxxxxxxxxxxxxx, sstabellini@xxxxxxxxxx, xen-devel@xxxxxxxxxxxxxxxxxxxx
- Delivery-date: Thu, 13 Aug 2026 18:36:36 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
- Pser-m365-app: SER-APP
On Thu, Aug 13, 2026 at 08:00:11AM +0200, Jan Beulich wrote:
> On 13.08.2026 05:51, dmukhin@xxxxxxxx wrote:
> > From: Denis Mukhin <dmukhin@xxxxxxxx>
> >
> > Currently there's no way to print Xen command line on the emergency
> > console for debugging purposes when 'xl' is unavailable.
> >
> > Add new keyhander '?' to do command line printout.
> >
> > To allow built-in command printout, drop __initconst in
> > 'opt_builtin_cmdline' declaration.
> >
> > Signed-off-by: Denis Mukhin <dmukhin@xxxxxxxx>
> > ---
> > Changes since v4:
> > - promote opt_builtin_cmdline to __ro_after_init and use it for
> > built-in command line reporting
> > - account for empty saved_cmdline
> > - adjust register_keyhandler() call - use '?'
>
> This isn't quite what I was expecting, following the feedback you got on
> v4. My expectation was that we'd see a 2-patch series, first patch moving
> non-help stuff out of the 'h' handler, second patch adding the dumping of
> the command line. Naturally the new handler then wouldn't be named
> show_cmdline(). I'd then further expect tat no new use of
> register_keyhandler() would be necessary: The handler itself would live
> in keyhandler.c, and print_version() would then be accompanied by a new
> print_cmdline().
I see, will update.
>
> Jan
>
|