mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
16985be90e
Test nfs4_getfacl gets ACL list correctly from server when the ACL
length is close enough to the end of a page. On buggy NFS client
getxattr could return ERANGE. Upstream commit ed92d8c137b7 ("NFSv4:
fix getacl ERANGE for some ACL buffer sizes") fixed this bug in 4.11
kernel.
Note that this reproducer was originally written by J. Bruce Fields.
Cc: J. Bruce Fields <bfields@redhat.com>
Cc: Weston Andros Adamson <dros@primarydata.com>
Cc: linux-nfs@vger.kernel.org
Reviewed-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
21 lines
412 B
Makefile
21 lines
412 B
Makefile
#
|
|
# Copyright (c) 2017 Red Hat, Inc. All Rights Reserved.
|
|
#
|
|
|
|
TOPDIR = ../..
|
|
include $(TOPDIR)/include/builddefs
|
|
|
|
NFS_DIR = nfs
|
|
TARGET_DIR = $(PKG_LIB_DIR)/$(TESTS_DIR)/$(NFS_DIR)
|
|
|
|
include $(BUILDRULES)
|
|
|
|
install:
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)
|
|
$(INSTALL) -m 755 $(TESTS) $(TARGET_DIR)
|
|
$(INSTALL) -m 644 group $(TARGET_DIR)
|
|
$(INSTALL) -m 644 $(OUTFILES) $(TARGET_DIR)
|
|
|
|
# Nothing.
|
|
install-dev install-lib:
|