/* * getsectsize.c --- get the sector size of a device. * * Copyright (C) 1995, 1995 Theodore Ts'o. * Copyright (C) 2003 VMware, Inc. * * %Begin-Header% * This file may be redistributed under the terms of the GNU Public * License. * %End-Header% */ /* Modified for OCFS2 by Manish Singh */ #define HAVE_UNISTD_H 1 #define HAVE_ERRNO_H 1 #define HAVE_LINUX_FD_H 1 #define HAVE_OPEN64 1 #define _LARGEFILE_SOURCE #define _LARGEFILE64_SOURCE #include #if HAVE_UNISTD_H #include #endif #if HAVE_ERRNO_H #include #endif #include #ifdef HAVE_LINUX_FD_H #include #include #endif #if defined(__linux__) && defined(_IO) && !defined(BLKSSZGET) #define BLKSSZGET _IO(0x12,104)/* get block device sector size */ #endif #include "ocfs2/ocfs2.h" /* * Returns the number of blocks in a partition */ errcode_t ocfs2_get_device_sectsize(const char *file, int *sectsize) { int fd; int ret; #ifdef HAVE_OPEN64 fd = open64(file, O_RDONLY); #else fd = open(file, O_RDONLY); #endif if (fd < 0) { if (errno == ENOENT) return OCFS2_ET_NAMED_DEVICE_NOT_FOUND; else return OCFS2_ET_IO; } ret = OCFS2_ET_CANNOT_DETERMINE_SECTOR_SIZE; #ifdef BLKSSZGET if (ioctl(fd, BLKSSZGET, sectsize) >= 0) ret = 0; #endif close(fd); return ret; } #ifdef DEBUG_EXE int main(int argc, char **argv) { int sectsize; int retval; if (argc < 2) { fprintf(stderr, "Usage: %s device\n", argv[0]); exit(1); } retval = ocfs2_get_device_sectsize(argv[1], §size); if (retval) { com_err(argv[0], retval, "while calling ocfs2_get_device_sectsize"); exit(1); } printf("Device %s has a hardware sector size of %d.\n", argv[1], sectsize); exit(0); } #endif