diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2017-02-09 18:01:23 +0300 | 
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-02-09 18:01:23 +0300 | 
| commit | 2e751dfb5ffd20d1a31837dbc9718741df69bffe (patch) | |
| tree | 8b7e0e47cf0ef4efda0f1090f0ccbbeb17e5a085 /fs/xfs/xfs_linux.h | |
| parent | a0e136d436ded817c0aade72efdefa56a00b4e5e (diff) | |
| parent | 7b6b46311a8562fb3a9e035ed6ffab6d49c28886 (diff) | |
| download | linux-2e751dfb5ffd20d1a31837dbc9718741df69bffe.tar.xz | |
Merge tag 'kvmarm-for-4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEAD
kvmarm updates for 4.11
- GICv3 save restore
- Cache flushing fixes
- MSI injection fix for GICv3 ITS
- Physical timer emulation support
Diffstat (limited to 'fs/xfs/xfs_linux.h')
| -rw-r--r-- | fs/xfs/xfs_linux.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h index e467218c0098..7a989de224f4 100644 --- a/fs/xfs/xfs_linux.h +++ b/fs/xfs/xfs_linux.h @@ -331,11 +331,11 @@ static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y)  }  #define ASSERT_ALWAYS(expr)	\ -	(unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__)) +	(likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))  #ifdef DEBUG  #define ASSERT(expr)	\ -	(unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__)) +	(likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))  #ifndef STATIC  # define STATIC noinline @@ -346,7 +346,7 @@ static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y)  #ifdef XFS_WARN  #define ASSERT(expr)	\ -	(unlikely(expr) ? (void)0 : asswarn(#expr, __FILE__, __LINE__)) +	(likely(expr) ? (void)0 : asswarn(#expr, __FILE__, __LINE__))  #ifndef STATIC  # define STATIC static noinline | 
