Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2025 09:44:05 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 0741aa3c7230 - stable/15 - LinuxKPI: device_driver add (*coredump)()
Message-ID:  <202510230944.59N9i5cX060069@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=0741aa3c7230f24472d915e44121c0b92d75c3a1

commit 0741aa3c7230f24472d915e44121c0b92d75c3a1
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-10-11 09:23:43 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-10-23 06:34:59 +0000

    LinuxKPI: device_driver add (*coredump)()
    
    Needed by multiple wireless driver for the v6.17 update (likely earlier
    versions already).
    
    Reviewed by:    dumbbell
    Differential Revision: https://reviews.freebsd.org/D53206
    
    (cherry picked from commit 8ea366f40084010c14fe40b3aebb42b459b195cc)
---
 sys/compat/linuxkpi/common/include/linux/device.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/device.h b/sys/compat/linuxkpi/common/include/linux/device.h
index 7dd6340746d2..c291133e2e0b 100644
--- a/sys/compat/linuxkpi/common/include/linux/device.h
+++ b/sys/compat/linuxkpi/common/include/linux/device.h
@@ -92,6 +92,7 @@ struct device_driver {
 	const struct dev_pm_ops *pm;
 
 	void (*shutdown) (struct device *);
+	void (*coredump) (struct device *);
 };
 
 struct device_type {


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202510230944.59N9i5cX060069>