svn commit: r366543 - head/sys/kern

Ravi Pokala rpokala at freebsd.org
Thu Oct 8 18:35:22 UTC 2020


-----Original Message-----
From: <owner-src-committers at freebsd.org> on behalf of Mitchell Horne <mhorne at FreeBSD.org>
Date: 2020-10-08, Thursday at 11:29
To: <src-committers at freebsd.org>, <svn-src-all at freebsd.org>, <svn-src-head at freebsd.org>
Subject: svn commit: r366543 - head/sys/kern

    Author: mhorne
    Date: Thu Oct  8 18:29:17 2020
    New Revision: 366543
    URL: https://svnweb.freebsd.org/changeset/base/366543

    Log:
      Fix a loop condition

      The correct way to identify the end of the metadata is two adjacent
      entries set to zero/MODINFO_END. I made a typo and this was checking the
      first entry twice.

      Reported by:	rpokala

Thanks! :-)

Ravi (rpokala@)


      Sponsored by:	NetApp, Inc.
      Sponsored by:	Klara, Inc.

    Modified:
      head/sys/kern/subr_module.c

    Modified: head/sys/kern/subr_module.c
    ==============================================================================
    --- head/sys/kern/subr_module.c	Thu Oct  8 18:02:05 2020	(r366542)
    +++ head/sys/kern/subr_module.c	Thu Oct  8 18:29:17 2020	(r366543)
    @@ -496,7 +496,7 @@ preload_dump_internal(struct sbuf *sbp)
     	 */
     	bptr = (uint32_t *)preload_metadata;
     	sbuf_putc(sbp, '\n');
    -	while (bptr[0] != MODINFO_END || bptr[0] != MODINFO_END) {
    +	while (bptr[0] != MODINFO_END || bptr[1] != MODINFO_END) {
     		sbuf_printf(sbp, " %p:\n", bptr);
     		type = *bptr++;
     		len = *bptr++;




More information about the svn-src-all mailing list