mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
buf.h: Fix declaration of unmapped_buf
For architectures with a small-data area, the __read_mostly section must
present at the object declaration.
(emaste note: This does not appear to have an affect within FreeBSD, but
may be needed by downstream projects that handle __read_mostly /
__section(".data.read_mostly") differently.)
Pull Request: https://github.com/freebsd/freebsd-src/pull/608
This commit is contained in:
parent
01f11ee1c5
commit
ede6c6c043
1 changed files with 2 additions and 1 deletions
|
|
@ -522,7 +522,8 @@ extern int bdwriteskip;
|
|||
extern int dirtybufferflushes;
|
||||
extern int altbufferflushes;
|
||||
extern int nswbuf; /* Number of swap I/O buffer headers. */
|
||||
extern caddr_t unmapped_buf; /* Data address for unmapped buffers. */
|
||||
extern caddr_t __read_mostly unmapped_buf; /* Data address for unmapped
|
||||
buffers. */
|
||||
|
||||
static inline int
|
||||
buf_mapped(struct buf *bp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue