From: "Purkait, Soham" <soham.purkait@intel.com>
To: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>,
<igt-dev@lists.freedesktop.org>, <riana.tauro@intel.com>,
<badal.nilawar@intel.com>, <kamil.konieczny@intel.com>,
<vinay.belgaumkar@intel.com>
Cc: <anshuman.gupta@intel.com>, <tursulin@ursulin.net>,
<lucas.de.marchi@gmail.com>
Subject: Re: [PATCH i-g-t v10 4/5] tools/gputop.src/gputop: Add support for per-engine busyness monitoring
Date: Mon, 13 Apr 2026 14:05:17 +0530 [thread overview]
Message-ID: <b4d3f4a5-3dec-4a52-9321-0cb71238794e@intel.com> (raw)
In-Reply-To: <e589ef3a-7703-40aa-a121-701c11955b24@igalia.com>
Hi Tvrtko,
On 09-04-2026 14:22, Tvrtko Ursulin wrote:
>
> On 08/04/2026 08:50, Purkait, Soham wrote:
>> Hi Tvrtko,
>>
>> On 06-04-2026 14:34, Tvrtko Ursulin wrote:
>>>
>>> On 06/04/2026 07:04, Soham Purkait wrote:
>>>> This introduce support for monitoring per-engine busyness in gputop,
>>>> extending existing per-client monitoring to handle multiple GPUs, when
>>>> present, including support for multi-engine instances, enabling
>>>> finer-grained engine busyness reporting.
>>>>
>>>> v1:
>>>> - Refactor GPUTOP into a vendor-agnostic tool. (Lucas)
>>>> v2:
>>>> - Cosmetic changes. (Riana)
>>>> - Avoid three level indentation. (Riana)
>>>> v3:
>>>> - Add device filter to populate the array of cards for
>>>> all supported drivers. (Zbigniew)
>>>> v4:
>>>> - Add user message for running without root privileges. (Kamil)
>>>> - Add support for GPU client-only busyness on unsupported
>>>> drivers as a fallback mechanism. (Kamil)
>>>> - Remove unused dependencies and headers. (Kamil)
>>>> v5:
>>>> - Replace hardcoded values with Enum for driver number. (Vinay)
>>>> - Rename driver_no to driver_num for better readability. (Vinay)
>>>>
>>>> Signed-off-by: Soham Purkait <soham.purkait@intel.com>
>>>> ---
>>>> tools/gputop.src/gputop.c | 305
>>>> ++++++++++++++++++++++++++++++-----
>>>> tools/gputop.src/meson.build | 2 +-
>>>> tools/meson.build | 3 +-
>>>> 3 files changed, 268 insertions(+), 42 deletions(-)
>>>>
>>>> diff --git a/tools/gputop.src/gputop.c b/tools/gputop.src/gputop.c
>>>> index 9b2e8cb6f..479897f40 100644
>>>> --- a/tools/gputop.src/gputop.c
>>>> +++ b/tools/gputop.src/gputop.c
>>>> @@ -1,6 +1,6 @@
>>>> // SPDX-License-Identifier: MIT
>>>> /*
>>>> - * Copyright © 2023 Intel Corporation
>>>> + * Copyright © 2023-2026 Intel Corporation
>>>> */
>>>> #include <assert.h>
>>>> @@ -14,22 +14,71 @@
>>>> #include <math.h>
>>>> #include <poll.h>
>>>> #include <signal.h>
>>>> +#include <stdbool.h>
>>>> #include <stdint.h>
>>>> #include <stdio.h>
>>>> #include <stdlib.h>
>>>> #include <string.h>
>>>> #include <sys/ioctl.h>
>>>> #include <sys/stat.h>
>>>> +#include <sys/sysmacros.h>
>>>> #include <sys/types.h>
>>>> -#include <unistd.h>
>>>> #include <termios.h>
>>>> -#include <sys/sysmacros.h>
>>>> -#include <stdbool.h>
>>>> +#include <unistd.h>
>>>> #include "igt_core.h"
>>>> #include "igt_drm_clients.h"
>>>> #include "igt_drm_fdinfo.h"
>>>> #include "igt_profiling.h"
>>>> +#include "xe_gputop.h"
>>>> +
>>>> +/**
>>>> + * Supported Drivers
>>>> + *
>>>> + * Adhere to the following requirements when implementing support
>>>> for the
>>>> + * new driver:
>>>> + * @drivers: Update drivers[] with new driver string and so the
>>>> enum drivers
>>>> + * with the new driver entry.
>>>> + * @sizeof_gputop_obj: Update this function as per new driver
>>>> support included.
>>>> + * @operations: Update the respective operations of the new driver:
>>>> + * gputop_init,
>>>> + * discover_engines,
>>>> + * pmu_init,
>>>> + * pmu_sample,
>>>> + * print_engines,
>>>> + * clean_up
>>>> + * @per_driver_contexts: Update per_driver_contexts[] array of
>>>> type "struct gputop_driver" with the
>>>> + * initial values.
>>>> + */
>>>> +static const char * const drivers[] = {
>>>> + "xe",
>>>> + /* Keep the last one as NULL */
>>>> + NULL
>>>> +};
>>>> +
>>>> +/**
>>>> + * Supported operations on driver instances. Update the ops[]
>>>> array for
>>>> + * each individual driver specific function. Maintain the sequence
>>>> as per
>>>> + * drivers[] array.
>>>> + */
>>>> +struct device_operations ops[] = {
>>>> + {
>>>> + xe_gputop_init,
>>>> + xe_populate_engines,
>>>> + xe_pmu_init,
>>>> + xe_pmu_sample,
>>>> + xe_print_engines,
>>>> + xe_clean_up
>>>> + }
>>>> +};
>>>> +
>>>> +/*
>>>> + * per_driver_contexts[] array of type struct gputop_driver which
>>>> keeps track of the devices
>>>> + * and related info discovered per driver.
>>>> + */
>>>> +struct gputop_driver per_driver_contexts[] = {
>>>> + {false, 0, NULL}
>>>> +};
>>>> enum utilization_type {
>>>> UTILIZATION_TYPE_ENGINE_TIME,
>>>> @@ -37,50 +86,84 @@ enum utilization_type {
>>>> };
>>>> enum intel_driver_type {
>>>> - INTEL_DRIVER_I915,
>>>> INTEL_DRIVER_XE,
>>>> + INTEL_DRIVER_I915,
>>>> INTEL_DRIVER_UNKNOWN,
>>>> };
>>>> #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
>>>> -static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊",
>>>> "▉", "█" };
>>>> -
>>>> -#define ANSI_HEADER "\033[7m"
>>>> -#define ANSI_RESET "\033[0m"
>>>> -
>>>> -static void n_spaces(const unsigned int n)
>>>> +static size_t sizeof_gputop_obj(int driver_num)
>>>> {
>>>> - unsigned int i;
>>>> -
>>>> - for (i = 0; i < n; i++)
>>>> - putchar(' ');
>>>> + switch (driver_num) {
>>>> + case INTEL_DRIVER_XE:
>>>> + return sizeof(struct xe_gputop);
>>>> + default:
>>>> + fprintf(stderr,
>>>> + "Driver object size does not exist.\n");
>>>> + exit(EXIT_FAILURE);
>>>> + }
>>>> }
>>>> -static void print_percentage_bar(double percent, int max_len)
>>>> +static void gputop_clean_up(void)
>>>> {
>>>> - int bar_len, i, len = max_len - 1;
>>>> - const int w = 8;
>>>> -
>>>> - len -= printf("|%5.1f%% ", percent);
>>>> -
>>>> - /* no space left for bars, do what we can */
>>>> - if (len < 0)
>>>> - len = 0;
>>>> + for (int i = 0; drivers[i]; i++) {
>>>> + ops[i].clean_up(per_driver_contexts[i].instances,
>>>> per_driver_contexts[i].len);
>>>> + free(per_driver_contexts[i].instances);
>>>> + per_driver_contexts[i].device_present = false;
>>>> + per_driver_contexts[i].len = 0;
>>>> + }
>>>> +}
>>>> - bar_len = ceil(w * percent * len / 100.0);
>>>> - if (bar_len > w * len)
>>>> - bar_len = w * len;
>>>> +static int find_driver(struct igt_device_card *card)
>>>> +{
>>>> + for (int i = 0; drivers[i]; i++) {
>>>> + if (strcmp(drivers[i], card->driver) == 0)
>>>> + return i;
>>>> + }
>>>> + return -1;
>>>> +}
>>>> - for (i = bar_len; i >= w; i -= w)
>>>> - printf("%s", bars[w]);
>>>> - if (i)
>>>> - printf("%s", bars[i]);
>>>> +static int populate_device_instances(const char *filter)
>>>> +{
>>>> + struct igt_device_card *cards = NULL;
>>>> + struct igt_device_card *card_inplace = NULL;
>>>> + struct gputop_driver *driver_entry = NULL;
>>>> + int driver_num;
>>>> + int count, final_count = 0;
>>>> +
>>>> + count = igt_device_card_match_all(filter, &cards);
>>>> + for (int j = 0; j < count; j++) {
>>>> + if (strcmp(cards[j].subsystem, "pci") != 0)
>>>> + continue;
>>>> - len -= (bar_len + (w - 1)) / w;
>>>> - n_spaces(len);
>>>> + driver_num = find_driver(&cards[j]);
>>>> + if (driver_num < 0)
>>>> + continue;
>>>> - putchar('|');
>>>> + driver_entry = &per_driver_contexts[driver_num];
>>>> + if (!driver_entry->device_present)
>>>> + driver_entry->device_present = true;
>>>> + driver_entry->len++;
>>>> + driver_entry->instances = realloc(driver_entry->instances,
>>>> + driver_entry->len
>>>> + * sizeof_gputop_obj(driver_num));
>>>> + if (!driver_entry->instances) {
>>>> + fprintf(stderr,
>>>> + "Device instance realloc failed (%s)\n",
>>>> + strerror(errno));
>>>> + exit(EXIT_FAILURE);
>>>> + }
>>>> + card_inplace = (struct igt_device_card *)
>>>> + calloc(1, sizeof(struct igt_device_card));
>>>> + memcpy(card_inplace, &cards[j], sizeof(struct
>>>> igt_device_card));
>>>> + ops[driver_num].gputop_init(driver_entry->instances,
>>>> (driver_entry->len - 1),
>>>> + card_inplace);
>>>> + final_count++;
>>>> + }
>>>> + if (count)
>>>> + free(cards);
>>>> + return final_count;
>>>> }
>>>> /* Get the correct sysfs prefix based on DRM minor number */
>>>> @@ -526,8 +609,31 @@ static void clrscr(void)
>>>> struct gputop_args {
>>>> long n_iter;
>>>> unsigned long delay_usec;
>>>> + bool verbose;
>>>> };
>>>> +static void countdown(const char *msg, const int start_sec)
>>>> +{
>>>> + struct pollfd pfd;
>>>> + int i, ret;
>>>> + char ch;
>>>> +
>>>> + for (i = start_sec; i > 0; i--) {
>>>> + printf("\r%s%d... second(s)", msg, i);
>>>> + fflush(stdout);
>>>> +
>>>> + pfd.fd = STDIN_FILENO;
>>>> + pfd.events = POLLIN;
>>>> +
>>>> + ret = poll(&pfd, 1, 1000);
>>>> + if (ret > 0 && (pfd.revents & POLLIN)) {
>>>> + while ((ch = getchar()) != '\n' && ch != EOF)
>>>> + continue;
>>>> + return;
>>>> + }
>>>> + }
>>>> +}
>>>> +
>>>> static void help(char *full_path)
>>>> {
>>>> const char *short_program_name = strrchr(full_path, '/');
>>>> @@ -541,18 +647,47 @@ static void help(char *full_path)
>>>> "\t%s [options]\n\n"
>>>> "Options:\n"
>>>> "\t-h, --help show this help\n"
>>>> + "\t-v, --verbose wait 5 seconds before
>>>> starting client-only busyness in"
>>>> + " non-root mode if neither CAP_PERFMON is set nor
>>>> perf_event_paranoid is"
>>>> + " permissive.\n"
>>>> "\t-d, --delay =SEC[.TENTHS] iterative delay as SECS
>>>> [.TENTHS]\n"
>>>> - "\t-n, --iterations =NUMBER number of executions\n"
>>>> + "\t-n, --iterations =NUMBER number of executions\n\n"
>>>> + "Running without root:\n"
>>>> + "\tAs a non-root user, CAP_PERFMON or
>>>> perf_event_paranoid is required to\n"
>>>> + "\taccess engine busyness\n"
>>>> + "\t" ANSI_HEADER "Steps to run without root (using
>>>> CAP_PERFMON):"
>>>> + ANSI_RESET "\n"
>>>> + "\tcd /path/to/igt-gpu-tools/\n"
>>>> + "\tsudo setcap cap_perfmon=+ep
>>>> $(pwd)/build/tools/gputop\n"
>>>> + "\tsudo sh -c \"echo $(pwd)/build/lib > /etc/
>>>> ld.so.conf.d/lib-igt.conf\"\n"
>>>> + "\tsudo ldconfig\n"
>>>> + "\t" ANSI_HEADER "Steps to revert once done:"
>>>> ANSI_RESET "\n"
>>>> + "\tsudo setcap cap_perfmon=-ep
>>>> $(pwd)/build/tools/gputop\n"
>>>> + "\tsudo rm /etc/ld.so.conf.d/lib-igt.conf\n"
>>>> + "\tsudo ldconfig\n"
>>>> + "\n"
>>>> + "\t" ANSI_HEADER "Steps to run without root (using
>>>> perf_event_paranoid):"
>>>> + ANSI_RESET "\n"
>>>> + "\t\033[32m# Save current perf_event_paranoid
>>>> value\033[0m\n"
>>>> + "\torig_val=$(sysctl -n kernel.perf_event_paranoid)\n"
>>>> + "\tsudo sysctl -w kernel.perf_event_paranoid=-1\n"
>>>> + "\t" ANSI_HEADER "Steps to revert once done:"
>>>> ANSI_RESET "\n"
>>>> + "\t\033[32m# Restore original value\033[0m\n"
>>>> + "\tsudo sysctl -w
>>>> kernel.perf_event_paranoid=$orig_val\n\n"
>>>> + "\tFor details, see 'Perf events and tool security':\n"
>>>> + "\thttps://www.kernel.org/doc/html/"
>>>> + "latest/admin-guide/perf-security.html\n\n"
>>>> , short_program_name);
>>>> }
>>>> static int parse_args(int argc, char * const argv[], struct
>>>> gputop_args *args)
>>>> {
>>>> - static const char cmdopts_s[] = "hn:d:";
>>>> + static const char cmdopts_s[] = "hvn:d:";
>>>> static const struct option cmdopts[] = {
>>>> {"help", no_argument, 0, 'h'},
>>>> {"delay", required_argument, 0, 'd'},
>>>> {"iterations", required_argument, 0, 'n'},
>>>> + {"verbose", no_argument, 0, 'v'},
>>>> { }
>>>> };
>>>> @@ -560,6 +695,7 @@ static int parse_args(int argc, char * const
>>>> argv[], struct gputop_args *args)
>>>> memset(args, 0, sizeof(*args));
>>>> args->n_iter = -1;
>>>> args->delay_usec = 2 * USEC_PER_SEC;
>>>> + args->verbose = false;
>>>> for (;;) {
>>>> int c, idx = 0;
>>>> @@ -573,6 +709,9 @@ static int parse_args(int argc, char * const
>>>> argv[], struct gputop_args *args)
>>>> case 'n':
>>>> args->n_iter = strtol(optarg, NULL, 10);
>>>> break;
>>>> + case 'v':
>>>> + args->verbose = true;
>>>> + break;
>>>> case 'd':
>>>> args->delay_usec = strtoul(optarg, &end_ptr, 10) *
>>>> USEC_PER_SEC;
>>>> if (*end_ptr == '.')
>>>> @@ -610,9 +749,12 @@ int main(int argc, char **argv)
>>>> struct igt_profiled_device *profiled_devices = NULL;
>>>> struct igt_drm_clients *clients = NULL;
>>>> int con_w = -1, con_h = -1;
>>>> + bool is_root;
>>>> int ret;
>>>> long n;
>>>> + is_root = (geteuid() == 0);
>>>> +
>>>> ret = parse_args(argc, argv, &args);
>>>> if (ret < 0)
>>>> return EXIT_FAILURE;
>>>> @@ -621,6 +763,62 @@ int main(int argc, char **argv)
>>>> n = args.n_iter;
>>>> period_us = args.delay_usec;
>>>> + populate_device_instances("device:subsystem=pci,card=all");
>>>> +
>>>> + for (int i = 0; drivers[i]; i++) {
>>>> + if (!per_driver_contexts[i].device_present)
>>>> + continue;
>>>> +
>>>> + for (int j = 0; j < per_driver_contexts[i].len; j++) {
>>>> + if (!
>>>> ops[i].init_engines(per_driver_contexts[i].instances, j)) {
>>>> + fprintf(stderr,
>>>> + "Failed to initialize engines! (%s)\n",
>>>> + strerror(errno));
>>>> + gputop_clean_up();
>>>> + return EXIT_FAILURE;
>>>> + }
>>>> + ret =
>>>> ops[i].pmu_init(per_driver_contexts[i].instances, j);
>>>> +
>>>> + if (ret) {
>>>> + if (errno == EACCES && !is_root) {
>>>> + igt_devices_free();
>>>> + gputop_clean_up();
>>>> + if (args.verbose) {
>>>> + fprintf(stderr,
>>>> + "\n"
>>>> + "Running without root privileges.\n"
>>>> + "Engine busyness may not be available "
>>>> + "without root privileges.\n"
>>>> + "See \"--help\" to enable engine "
>>>> + "busyness without root.\n\n");
>>>> + countdown("Resuming with only gpu client "
>>>> + "busyness in ", 5);
>>>> + }
>>>> + } else {
>>>> + fprintf(stderr,
>>>> + "Failed to initialize PMU! (%s)\n",
>>>> + strerror(errno));
>>>> + igt_devices_free();
>>>> + gputop_clean_up();
>>>> + return EXIT_FAILURE;
>>>> + }
>>>> + }
>>>> + }
>>>> + }
>>>> +
>>>> + for (int i = 0; drivers[i]; i++) {
>>>> + for (int j = 0;
>>>> + per_driver_contexts[i].device_present && j <
>>>> per_driver_contexts[i].len;
>>>> + j++)
>>>> + if
>>>> (ops[i].pmu_sample(per_driver_contexts[i].instances, j)) {
>>>> + fprintf(stderr,
>>>> + "Failed to sample PMU! (%s)\n",
>>>> + strerror(errno));
>>>> + igt_devices_free();
>>>> + gputop_clean_up();
>>>> + return EXIT_FAILURE;
>>>> + }
>>>> + }
>>>> clients = igt_drm_clients_init(NULL);
>>>> if (!clients)
>>>> @@ -642,22 +840,49 @@ int main(int argc, char **argv)
>>>> while ((n != 0) && !stop_top) {
>>>> struct igt_drm_client *c, *prevc = NULL;
>>>> - int i, engine_w = 0, lines = 0;
>>>> + int k, engine_w = 0, lines = 0;
>>>> igt_drm_clients_scan(clients, NULL, NULL, 0, NULL, 0);
>>>> +
>>>> + for (int i = 0; drivers[i]; i++) {
>>>> + for (int j = 0;
>>>> + per_driver_contexts[i].device_present &&
>>>> + j < per_driver_contexts[i].len;
>>>> + j++)
>>>> + if
>>>> (ops[i].pmu_sample(per_driver_contexts[i].instances, j)) {
>>>> + fprintf(stderr,
>>>> + "Failed to sample PMU! (%s)\n",
>>>> + strerror(errno));
>>>> + igt_devices_free();
>>>> + gputop_clean_up();
>>>> + return EXIT_FAILURE;
>>>
>>> Imagine abstracting this all to a library akin to igt_drm_clients
>>> and then both xe_gputop and intel_gpu_top could use it. Then the
>>> step where latter would work with both i915 and xe could be very
>>> near, all the code would be only in the new library and not
>>> duplicated, plus, one day extending the support to a non-intel
>>> driver could be quite plausible.
>> At present, the planned scope is focused on adding Xe support in
>> GPUTOP and support for i915 will also be added in the near future if
>> necessary. In addition, GPUTOP is designed to be extensible and can
>> be adapted to support non-Intel drivers as well.
>
> Yes I designed it to be driver agnostic and so extensible. So I think
> it would be better to continue with that direction and not make it worse.
>
> Specifically that would mean not having things such as
> intel_driver_type, xe device operations, get_num_gts,
> get_intel_frequencies, etc, and even assumption that all devices are
> PCI, _directly_ in gputop.c. Rather move it to a library and abstract
> the concepts.
The frequency related codes are not introduced by this patch. Could be
moved along with the engine busyness codes. Although I am under the
impression, if moved to a library, there will be hardly any user of it
apart from the gputop it self. Would it be better if the engine
busyness related codes moved to a separate source for better readability ?
>
> Then there is countdown() which is, well, novel, and a pretty verbose
> help text.
>
> The diff of the series is quite bad as well since it deals with the
> mess created so far. For example this patch removes some functions
> which are needed and not added anywhere in this series. So the series
> is very hard to review on it's own.
>
> And finally, but not least, it still breaks the tool for non-root:
>
> $ tools/gputop
> Engine query failed!
> Failed to initialize engines! (Bad file descriptor)
>
> At least on xe. But still not nice since there is no need to regress
> that. Just make it access what it can and hide what it can't.
Noted. Unavailable functionality will be hidden, and the program should
fall back to accessible features without failing.
Regards,
Soham
>
> Regards,
>
> Tvrtko
>
next prev parent reply other threads:[~2026-04-13 8:35 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-06 6:04 [PATCH i-g-t v10 0/5] Close any open drm device after engine initialization in GPUTOP Soham Purkait
2026-04-06 6:04 ` [PATCH i-g-t v10 1/5] tools: Rename tools/gputop to tools/gputop.src Soham Purkait
2026-04-07 7:45 ` Jani Nikula
2026-04-08 5:50 ` Purkait, Soham
2026-04-06 6:04 ` [PATCH i-g-t v10 2/5] tools/gputop.src/utils: Add clamp macro to remove dependency on lib/xe/* Soham Purkait
2026-04-06 6:04 ` [PATCH i-g-t v10 3/5] tools/gputop.src/xe_gputop: Use direct ioctls with card_fd cleanup Soham Purkait
2026-04-06 6:04 ` [PATCH i-g-t v10 4/5] tools/gputop.src/gputop: Add support for per-engine busyness monitoring Soham Purkait
2026-04-06 9:04 ` Tvrtko Ursulin
2026-04-08 7:50 ` Purkait, Soham
2026-04-09 8:52 ` Tvrtko Ursulin
2026-04-13 8:35 ` Purkait, Soham [this message]
2026-04-06 6:04 ` [PATCH i-g-t v10 5/5] tools/gputop.src/gputop: Add command line option for device filter Soham Purkait
2026-04-06 8:25 ` ✓ Xe.CI.BAT: success for Close any open drm device after engine initialization in GPUTOP (rev11) Patchwork
2026-04-06 8:42 ` ✓ i915.CI.BAT: " Patchwork
2026-04-06 11:21 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-06 12:32 ` ✗ i915.CI.Full: " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b4d3f4a5-3dec-4a52-9321-0cb71238794e@intel.com \
--to=soham.purkait@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=badal.nilawar@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@intel.com \
--cc=lucas.de.marchi@gmail.com \
--cc=riana.tauro@intel.com \
--cc=tursulin@ursulin.net \
--cc=tvrtko.ursulin@igalia.com \
--cc=vinay.belgaumkar@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox