Date: Sat, 9 Aug 2025 12:35:58 GMT From: =?utf-8?Q?Jean-S=C3=A9bastien?= =?utf-8?Q?P=C3=A9dron?= <dumbbell@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a7a05ace5d02 - main - linuxkpi: Add `name` field to `struct resource` Message-ID: <202508091235.579CZwP3020553@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dumbbell: URL: https://cgit.FreeBSD.org/src/commit/?id=a7a05ace5d0221bed1fce7c8c09ca31a9eafeb11 commit a7a05ace5d0221bed1fce7c8c09ca31a9eafeb11 Author: Jean-Sébastien Pédron <dumbbell@FreeBSD.org> AuthorDate: 2025-06-20 16:52:39 +0000 Commit: Jean-Sébastien Pédron <dumbbell@FreeBSD.org> CommitDate: 2025-08-09 12:26:24 +0000 linuxkpi: Add `name` field to `struct resource` The i915 DRM driver started to display this field in log messages in Linux 6.9. Reviewed by: emaste, manu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D50989 --- sys/compat/linuxkpi/common/include/linux/ioport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linuxkpi/common/include/linux/ioport.h b/sys/compat/linuxkpi/common/include/linux/ioport.h index 444f3ad94602..763af2de7c4f 100644 --- a/sys/compat/linuxkpi/common/include/linux/ioport.h +++ b/sys/compat/linuxkpi/common/include/linux/ioport.h @@ -40,6 +40,7 @@ struct resource { resource_size_t start; resource_size_t end; + const char *name; }; static inline resource_size_t
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202508091235.579CZwP3020553>