Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2024 17:41:25 GMT
From:      Christos Margiolis <christos@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d59058f3b313 - main - sound: Make SNDST_UNVLBUF_MAX a power of two
Message-ID:  <202405201741.44KHfPB8069408@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by christos:

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

commit d59058f3b31353442497e728dd5beb80585ad8d2
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-05-20 17:41:18 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-05-20 17:41:18 +0000

    sound: Make SNDST_UNVLBUF_MAX a power of two
    
    Fixes:          074d337ad618 ("sound: Check user-supplied size passed to SNDSTIOC_ADD_USER_DEVS*")
    Reported by:    markj
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 day
    Reviewed by:    markj
    Differential Revision:  https://reviews.freebsd.org/D45277
---
 sys/sys/sndstat.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/sndstat.h b/sys/sys/sndstat.h
index 8a49042b0453..e0e403b1a72a 100644
--- a/sys/sys/sndstat.h
+++ b/sys/sys/sndstat.h
@@ -77,7 +77,7 @@ struct sndstioc_nv_arg {
 /*
  * Maximum user-specified nvlist buffer size
  */
-#define SNDST_UNVLBUF_MAX		65535
+#define SNDST_UNVLBUF_MAX		65536
 
 #define SNDSTIOC_REFRESH_DEVS \
 	_IO('D', 100)



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