diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_dir2_block.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_dir2_block.c | 22 | 
1 files changed, 5 insertions, 17 deletions
diff --git a/fs/xfs/libxfs/xfs_dir2_block.c b/fs/xfs/libxfs/xfs_dir2_block.c index 875893ded514..30ed5919da72 100644 --- a/fs/xfs/libxfs/xfs_dir2_block.c +++ b/fs/xfs/libxfs/xfs_dir2_block.c @@ -1,20 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0  /*   * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.   * Copyright (c) 2013 Red Hat, Inc.   * All Rights Reserved. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation. - * - * This program is distributed in the hope that it would be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write the Free Software Foundation, - * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA   */  #include "xfs.h"  #include "xfs_fs.h" @@ -514,8 +502,8 @@ xfs_dir2_block_addname(  			if (mid - lowstale)  				memmove(&blp[lowstale], &blp[lowstale + 1],  					(mid - lowstale) * sizeof(*blp)); -			lfloglow = MIN(lowstale, lfloglow); -			lfloghigh = MAX(mid, lfloghigh); +			lfloglow = min(lowstale, lfloglow); +			lfloghigh = max(mid, lfloghigh);  		}  		/*  		 * Move entries toward the high-numbered stale entry. @@ -526,8 +514,8 @@ xfs_dir2_block_addname(  			if (highstale - mid)  				memmove(&blp[mid + 1], &blp[mid],  					(highstale - mid) * sizeof(*blp)); -			lfloglow = MIN(mid, lfloglow); -			lfloghigh = MAX(highstale, lfloghigh); +			lfloglow = min(mid, lfloglow); +			lfloghigh = max(highstale, lfloghigh);  		}  		be32_add_cpu(&btp->stale, -1);  	}  |