diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-21 01:27:08 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:47:25 -0400 |
commit | 005a59ec745d23f60222f7712adde48f64d7d3c8 (patch) | |
tree | 094788ffb7b6b0e19d93283968e7ded8579f521c /fs/hostfs | |
parent | 51102ee5b8853d230e534cbcd0d888f0134738a3 (diff) | |
download | linux-stable-005a59ec745d23f60222f7712adde48f64d7d3c8.tar.gz linux-stable-005a59ec745d23f60222f7712adde48f64d7d3c8.tar.bz2 linux-stable-005a59ec745d23f60222f7712adde48f64d7d3c8.zip |
Deal with missing exports for hostfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hostfs')
-rw-r--r-- | fs/hostfs/hostfs_user.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/hostfs/hostfs_user.c b/fs/hostfs/hostfs_user.c index b79424f93282..4b8c666ba28f 100644 --- a/fs/hostfs/hostfs_user.c +++ b/fs/hostfs/hostfs_user.c @@ -76,9 +76,9 @@ int file_type(const char *path, int *maj, int *min) * about its definition. */ if (maj != NULL) - *maj = major(buf.st_rdev); + *maj = os_major(buf.st_rdev); if (min != NULL) - *min = minor(buf.st_rdev); + *min = os_minor(buf.st_rdev); if (S_ISDIR(buf.st_mode)) return OS_TYPE_DIR; @@ -361,7 +361,7 @@ int do_mknod(const char *file, int mode, unsigned int major, unsigned int minor) { int err; - err = mknod(file, mode, makedev(major, minor)); + err = mknod(file, mode, os_makedev(major, minor)); if (err) return -errno; return 0; |