diff mbox series

[v3,1/1] xfs_io: make MADV_SOFT_OFFLINE conditional

Message ID 20240531195751.15302-2-bage@debian.org (mailing list archive)
State Accepted
Headers show
Series xfs_io: make MADV_SOFT_OFFLINE conditional | expand

Commit Message

Bastian Germann May 31, 2024, 7:57 p.m. UTC
mips64el does not have the symbol MADV_SOFT_OFFLINE, so wrap it in an
ifdef.

Signed-off-by: Bastian Germann <bage@debian.org>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
---
 io/madvise.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Christoph Hellwig June 1, 2024, 4:48 a.m. UTC | #1
On Fri, May 31, 2024 at 09:57:51PM +0200, Bastian Germann wrote:
> +#ifdef MADV_SOFT_OFFLINE
> +/* MADV_SOFT_OFFLINE is undefined on mips */

... as of Linux 6.9 */

With that (can probably just be fixed when applying):


Reviewed-by: Christoph Hellwig <hch@lst.de>
Carlos Maiolino June 17, 2024, 11:44 a.m. UTC | #2
On Fri, May 31, 2024 at 09:48:05PM GMT, Christoph Hellwig wrote:
> On Fri, May 31, 2024 at 09:57:51PM +0200, Bastian Germann wrote:
> > +#ifdef MADV_SOFT_OFFLINE
> > +/* MADV_SOFT_OFFLINE is undefined on mips */
> 
> ... as of Linux 6.9 */

no problem.

Carlos

> 
> With that (can probably just be fixed when applying):
> 
> 
> Reviewed-by: Christoph Hellwig <hch@lst.de>
>
diff mbox series

Patch

diff --git a/io/madvise.c b/io/madvise.c
index ede23395..f26c03f1 100644
--- a/io/madvise.c
+++ b/io/madvise.c
@@ -40,7 +40,9 @@  madvise_help(void)
 " -H -- enable transparent hugepages (MADV_HUGEPAGE)\n"
 " -m -- mark the range mergeable (MADV_MERGEABLE)\n"
 " -M -- mark the range unmergeable (MADV_UNMERGEABLE)\n"
+#ifdef MADV_SOFT_OFFLINE
 " -o -- mark the range offline (MADV_SOFT_OFFLINE)\n"
+#endif
 " -p -- punch a hole in the file (MADV_REMOVE)\n"
 " -P -- poison the page cache (MADV_HWPOISON)\n"
 #ifdef MADV_POPULATE_READ
@@ -101,9 +103,12 @@  madvise_f(
 		case 'M':	/* disable merging */
 			advise = MADV_UNMERGEABLE;
 			break;
+#ifdef MADV_SOFT_OFFLINE
+/* MADV_SOFT_OFFLINE is undefined on mips */
 		case 'o':	/* offline */
 			advise = MADV_SOFT_OFFLINE;
 			break;
+#endif
 		case 'p':	/* punch hole */
 			advise = MADV_REMOVE;
 			break;