diff options
author | Amir Goldstein <amir73il@gmail.com> | 2017-05-04 16:26:23 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-06-05 17:59:08 +0300 |
commit | d905fdaaa7d59abde1535075cca6774fd7f0ef0a (patch) | |
tree | e071d80fa8db77687d813c5768952f8ede8805c6 /fs/xfs/Makefile | |
parent | cb0ba6cc22f372a2d42f9f2afc5a35f432cc61e2 (diff) | |
download | linux-d905fdaaa7d59abde1535075cca6774fd7f0ef0a.tar.xz |
xfs: use the common helper uuid_is_null()
Use the common helper uuid_is_null() and remove the xfs specific
helper uuid_is_nil().
The common helper does not check for the NULL pointer value as
xfs helper did, but xfs code never calls the helper with a pointer
that can be NULL.
Conform comments and warning strings to use the term 'null uuid'
instead of 'nil uuid', because this is the terminology used by
lib/uuid.c and its users. It is also the terminology used in
userspace by libuuid and xfsprogs.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
[hch: remove now unused uuid.[ch]]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 5c90f82b8f6b..a6e955bfead8 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -98,8 +98,7 @@ xfs-y += xfs_aops.o \ xfs_sysfs.o \ xfs_trans.o \ xfs_xattr.o \ - kmem.o \ - uuid.o + kmem.o # low-level transaction/log code xfs-y += xfs_log.o \ |