Home
last modified time | relevance | path

Searched refs:block_fd (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/shared/
Ddiscover-image.c364 _cleanup_close_ int block_fd = -1; in image_make() local
380 block_fd = openat(dfd, filename, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY); in image_make()
381 if (block_fd < 0) in image_make()
385 if (fstat(block_fd, &stbuf) < 0) in image_make()
395 if (ioctl(block_fd, BLKROGET, &state) < 0) in image_make()
401 if (ioctl(block_fd, BLKGETSIZE64, &size) < 0) in image_make()
404 block_fd = safe_close(block_fd); in image_make()