Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Olivain via buildroot <buildroot@buildroot.org>
To: Giulio Benetti <giulio.benetti@benettiengineering.com>
Cc: buildroot@buildroot.org,
	James Hilliard <james.hilliard1@gmail.com>,
	Kris Bahnsen <kris@embeddedts.com>,
	Louis Aussedat <aussedat.louis@gmail.com>,
	Sergey Matyukevich <geomatsi@gmail.com>
Subject: Re: [Buildroot] [PATCH] package/rtl8189es: fix build failure with Linux 6.15
Date: Mon, 21 Jul 2025 22:59:58 +0200	[thread overview]
Message-ID: <95cd2991e059bd354fabe1244ec3b2b2@free.fr> (raw)
In-Reply-To: <20250701190841.714026-4-giulio.benetti@benettiengineering.com>

Hi Giulio,

On 01/07/2025 21:08, Giulio Benetti wrote:
> Add local patch pending upstream to fix build failure with Linux 6.15
> 
> Fixes:
> still not occured.
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>  .../0001-Fix-build-with-Linux-6.15.patch      | 38 +++++++++++++++++++
>  1 file changed, 38 insertions(+)
>  create mode 100644 
> package/xr819-xradio/0001-Fix-build-with-Linux-6.15.patch
> 
> diff --git a/package/xr819-xradio/0001-Fix-build-with-Linux-6.15.patch 
> b/package/xr819-xradio/0001-Fix-build-with-Linux-6.15.patch

The patch title mention "package/rtl8189es" but the package patch
is added in "package/xr819-xradio". Could you clarify or send an updated
patch if this is a mixup, please?

> new file mode 100644
> index 0000000000..ce0b3f3908
> --- /dev/null
> +++ b/package/xr819-xradio/0001-Fix-build-with-Linux-6.15.patch
> @@ -0,0 +1,38 @@
> +From 6e170c96bf50a1088d5dd85fdfd67dc7f83e4eb9 Mon Sep 17 00:00:00 2001
> +From: Giulio Benetti <giulio.benetti@benettiengineering.com>
> +Date: Tue, 1 Jul 2025 20:51:40 +0200
> +Subject: [PATCH] Fix build with Linux 6.15
> +
> +Commit:
> +https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=8fa7292fee5c5240402371ea89
> +ab285ec856c916
> +drops del_timer_sync() in favor of timer_delete_sync() so let's 
> backport
> +locally functions del_timer_sync() when Linux version is 6.15.0 or 
> later.
> +
> +Upstream: https://github.com/fifteenhex/xradio/pull/26
> +Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> +---
> + xradio.h | 7 +++++++
> + 1 file changed, 7 insertions(+)
> +
> +diff --git a/xradio.h b/xradio.h
> +index e7f60f6..9506986 100644
> +--- a/xradio.h
> ++++ b/xradio.h
> +@@ -47,6 +47,13 @@
> + #include "pm.h"
> + #include "fwio.h"
> +
> ++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0))
> ++static inline int del_timer_sync(struct timer_list *timer)
> ++{
> ++	return timer_delete_sync(timer);
> ++}
> ++#endif
> ++
> + /* #define ROC_DEBUG */
> + /* hidden ssid is only supported when separate probe resp IE
> +    configuration is supported */
> +--
> +2.39.5
> +
> --
> 2.39.5

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2025-07-21 21:00 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-01 19:08 [Buildroot] [PATCH] package/rtl8189es: bump to version 2025-06-21 Giulio Benetti
2025-07-01 19:08 ` [Buildroot] [PATCH] package/rtl8189fs: " Giulio Benetti
2025-07-21 21:03   ` Julien Olivain via buildroot
2025-07-01 19:08 ` [Buildroot] [PATCH] package/rtl8192eu: bump to 2025-06-09 version Giulio Benetti
2025-07-21 21:03   ` Julien Olivain via buildroot
2025-07-01 19:08 ` [Buildroot] [PATCH] package/rtl8189es: fix build failure with Linux 6.15 Giulio Benetti
2025-07-21 20:59   ` Julien Olivain via buildroot [this message]
2025-07-22 16:33     ` Giulio Benetti
2025-07-01 19:08 ` [Buildroot] [PATCH] package/rtl8812au-aircrack-ng: fix build " Giulio Benetti
2025-07-21 21:04   ` Julien Olivain via buildroot
2025-07-01 19:08 ` [Buildroot] [PATCH] package/wilc-driver: fix build failure " Giulio Benetti
2025-07-03 18:23   ` Giulio Benetti
2025-07-21 21:04   ` Julien Olivain via buildroot
2025-07-21 21:02 ` [Buildroot] [PATCH] package/rtl8189es: bump to version 2025-06-21 Julien Olivain via buildroot

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=95cd2991e059bd354fabe1244ec3b2b2@free.fr \
    --to=buildroot@buildroot.org \
    --cc=aussedat.louis@gmail.com \
    --cc=geomatsi@gmail.com \
    --cc=giulio.benetti@benettiengineering.com \
    --cc=james.hilliard1@gmail.com \
    --cc=ju.o@free.fr \
    --cc=kris@embeddedts.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