-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The .write/.read file operations callbacks can be retired since support for .read_iter/.write_iter and .aio_read/.aio_write has been added. The vfs_write()/vfs_read() entry functions will select the correct interface for the kernel. This is desirable because all VFS write/read operations now rely on common code. This change also add the generic write checks to make sure that ulimits are enforced correctly on write. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Chunwei Chen <david.chen@osnexus.com> Closes #5587 Closes #5673
- Loading branch information
1 parent
986dd8a
commit 933ec99
Showing
6 changed files
with
132 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
tests/zfs-tests/tests/functional/large_files/large_files_002_pos.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or http://www.opensolaris.org/os/licensing. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright (c) 2015 by Lawrence Livermore National Security, LLC. | ||
# All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
|
||
# | ||
# DESCRIPTION: | ||
# Verify 'ulimit -f' file size restrictions are enforced. | ||
# | ||
# STRATEGY: | ||
# 1. Set ulimit file size to unlimited, verify files can be created. | ||
# 2. Reduce ulimit file size, verify the expected error is returned. | ||
# | ||
|
||
verify_runnable "both" | ||
|
||
log_assert "Verify 'ulimit -f' maximum file size is enforced" | ||
|
||
# Verify 'ulimit -f unlimited' works | ||
log_must ulimit -f unlimited | ||
log_must sh -c 'dd if=/dev/zero of=$TESTDIR/ulimit_write_file bs=1M count=2' | ||
log_must sh -c '$TRUNCATE -s2M $TESTDIR/ulimit_trunc_file' | ||
log_must $RM $TESTDIR/ulimit_write_file $TESTDIR/ulimit_trunc_file | ||
|
||
# Verify 'ulimit -f <size>' works | ||
log_must ulimit -f 1024 | ||
log_mustnot sh -c 'dd if=/dev/zero of=$TESTDIR/ulimit_write_file bs=1M count=2' | ||
log_mustnot sh -c '$TRUNCATE -s2M $TESTDIR/ulimit_trunc_file' | ||
log_must $RM $TESTDIR/ulimit_write_file $TESTDIR/ulimit_trunc_file | ||
|
||
log_pass "Successfully enforced 'ulimit -f' maximum file size" |
933ec99
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not know if something went wrong here, but I am trying to build freshly pulled zfs up to 3b6425c "Fix atomic_sub_64() i386 assembly implementation" due to the fact that fedora 25 is on Kernel 4.9 but 0.7.x-zfs is needed. I get the following build error(s):
»zpl_iter_write«...
.../zfs/module/zfs/zpl_file.c:389:29: [-Werror=incompatible-pointer-types]
ret = generic_write_checks(file, &kiocb->ki_pos, &count, isblk);
^~~~
In file included from ./include/linux/compat.h:17:0,
from ../zfs/module/zfs/zpl_file.c:28:
./include/linux/fs.h:2794:16: »struct kiocb *« expected but arg has type »struct file *«
extern ssize_t generic_write_checks(struct kiocb *, struct iov_iter *);
^~~~~~~~~~~~~~~~~~~~
.../zfs/module/zfs/zpl_file.c:389:35: arg 2 of »generic_write_checks« [-Werror=incompatible-pointer-types]
ret = generic_write_checks(file, &kiocb->ki_pos, &count, isblk);
^
In file included from ./include/linux/compat.h:17:0,
from .../zfs/module/zfs/zpl_file.c:28:
./include/linux/fs.h:2794:16: »struct iov_iter *« expected, but arg type is »loff_t * {aka long long int *}«
extern ssize_t generic_write_checks(struct kiocb *, struct iov_iter *);
^~~~~~~~~~~~~~~~~~~~
../zfs/zpl_file.c:389:8: too many arguments for function »generic_write_checks«
ret = generic_write_checks(file, &kiocb->ki_pos, &count, isblk);
^~~~~~~~~~~~~~~~~~~
... so I am not sure if in line 382 the "ifndef" should be a ifdef to get the two different interfaces (as in "if with kiocb use 4-paramter fundtion, else the simple one?
933ec99
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@grizzlyfred
Please post your config.log for zfs to #5720
933ec99
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure this is related? OK, that is beyond my understanding of the inner workings of ZoL.
Anyway, i hard-reseted to commit -1 of this one: 986dd8a ("OpenZFS 5561 - support root pools on EFI/GPT partitioned disks", 2017-01-27) and now I have at least some kmod rpms, spl I left at whre it was some hrs. ago. I am now specifically on this specific commit, to see if it introduces the build fault or not ("bisect..").
I would post the config log as close as possible to the build error.
933ec99
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tuxoko I can confirm this exact commit fails to build, haven't checked further though I would have liked to catch last weeks bugfixes for now. As requested, config.log is uploaded on #5720.
Update: tuxoko figured out, that the "old" trap of not running ./autogen.sh was the culprit.
Keep in mind "git pull" will NOT delete the "old" configure script (from last week...)