Skip to content

Commit

Permalink
tests: many_fds: simplify, modernise
Browse files Browse the repository at this point in the history
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes openzfs#13411
  • Loading branch information
nabijaczleweli authored and behlendorf committed May 11, 2022
1 parent 510ee28 commit 951a388
Showing 1 changed file with 20 additions and 34 deletions.
54 changes: 20 additions & 34 deletions tests/zfs-tests/tests/functional/libzfs/many_fds.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,51 +22,37 @@
/*
* Copyright (C) 2015 STRATO AG.
*/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <err.h>
#include <fcntl.h>
#include <libzfs.h>
#include <sys/resource.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

/*
* Check if libzfs works with more than 255 held file handles.
*/
int
main(void)
{
int i;
struct rlimit limit;
libzfs_handle_t *h;

limit.rlim_cur = 65535;
limit.rlim_max = 65535;

if (setrlimit(RLIMIT_NOFILE, &limit) != 0) {
(void) printf("many_fds: setrlimit() failed with errno=%d\n",
errno);
exit(1);
}
struct rlimit limit = {
.rlim_cur = 64 * 1024,
.rlim_max = 64 * 1024,
};
if (setrlimit(RLIMIT_NOFILE, &limit) != 0)
err(1, "setrlimit()");

for (i = 0; i < 255; ++i) {
int fd = open("/dev/null", O_RDONLY);
if (fd == -1) {
(void) printf("open failed with errno=%d\n", errno);
return (1);
}
}
int fd = open("/dev/null", O_RDONLY);
if (fd == -1)
err(1, "open()");
for (int i = 0; i < limit.rlim_cur / 2; ++i)
if (dup(fd) == -1)
err(1, "dup()");

h = libzfs_init();
libzfs_handle_t *h = libzfs_init();
if (h == NULL)
err(1, "libzfs_init()");

if (h != NULL) {
libzfs_fini(h);
return (0);
} else {
(void) printf("many_fds: libzfs_init() failed with errno=%d\n",
errno);
return (1);
}
libzfs_fini(h);
}

0 comments on commit 951a388

Please sign in to comment.