diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-07-17 12:26:13 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-07-26 16:48:49 +0000 |
| commit | b85f7753dac542664d68d44d4cf75674a3cba44f (patch) | |
| tree | 78780444054bdfff696ee80a46a7c208e7e640cc | |
| parent | a7d0df951c90612e6bc04cb22333df4aff1361d1 (diff) | |
LinuxKPI: sg_page() remove superfluous ()
Sponsored by: The FreeBSD Foundation
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D58295
(cherry picked from commit fe1784004d6e43b3080ab7b7115ee0ea3ba317f2)
| -rw-r--r-- | sys/compat/linuxkpi/common/include/linux/scatterlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/scatterlist.h b/sys/compat/linuxkpi/common/include/linux/scatterlist.h index 0c2f8b62f9f5..1941e4a896e8 100644 --- a/sys/compat/linuxkpi/common/include/linux/scatterlist.h +++ b/sys/compat/linuxkpi/common/include/linux/scatterlist.h @@ -135,7 +135,7 @@ sg_set_page(struct scatterlist *sg, struct page *page, unsigned int len, static inline struct page * sg_page(struct scatterlist *sg) { - return ((struct page *)((sg)->page_link & ~SG_PAGE_LINK_MASK)); + return ((struct page *)(sg->page_link & ~SG_PAGE_LINK_MASK)); } static inline void |
