linux-hams.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chris Maness <christopher.maness@gmail.com>
To: linux-hams@vger.kernel.org
Subject: One Slipped By
Date: Sat, 11 Mar 2023 12:53:34 -0800	[thread overview]
Message-ID: <CANnsUMG_aubfxQ4+dmVovrdri46c58ZZ5ky6TseZ4QCKRnOf2Q@mail.gmail.com> (raw)

Looks like I missed a patch compared to my hand patched kernel, I see:


diff linux-6.2.5/net/ax25/af_ax25.c linux-5.15.89/net/ax25/af_ax25.c
105,106c105
<                               netdev_put(ax25_dev->dev,
<                                          &ax25_dev->dev_tracker);
---
>                               dev_put(ax25_dev->dev);
225c224
< ax25_cb *ax25_find_cb(const ax25_address *src_addr, ax25_address *dest_addr,
---
> ax25_cb *ax25_find_cb(ax25_address *src_addr, ax25_address *dest_addr,
726c725
<       valptr = &val;
---
>       valptr = (void *) &val;
781c780
<                       strscpy(devname, ax25_dev->dev->name, sizeof(devname));
---
>                       strlcpy(devname, ax25_dev->dev->name, sizeof(devname));
788c787
<               valptr = devname;
---
>               valptr = (void *) devname;
1069c1068
<               netdev_put(ax25_dev->dev, &ax25->dev_tracker);
---
>               dev_put(ax25_dev->dev);
1150c1149
<               netdev_hold(ax25_dev->dev, &ax25->dev_tracker, GFP_ATOMIC);
---
>               dev_hold(ax25_dev->dev);
-- 
Thanks,
Chris Maness

             reply	other threads:[~2023-03-11 20:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-11 20:53 Chris Maness [this message]
2023-03-13  4:35 ` One Slipped By Dan Carpenter

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=CANnsUMG_aubfxQ4+dmVovrdri46c58ZZ5ky6TseZ4QCKRnOf2Q@mail.gmail.com \
    --to=christopher.maness@gmail.com \
    --cc=linux-hams@vger.kernel.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).