From 7d87f8f5ce56278f56427196b5e2c5e4c0be02ad Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Tue, 5 May 2009 16:02:38 +0530 Subject: booster: Add mknod API Signed-off-by: Anand V. Avati --- booster/src/booster.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'booster') diff --git a/booster/src/booster.c b/booster/src/booster.c index 7bb2b64e2f2..b208b3bd687 100644 --- a/booster/src/booster.c +++ b/booster/src/booster.c @@ -161,6 +161,7 @@ static int (*real_link) (const char *oldpath, const char *newname); static int (*real_rename) (const char *oldpath, const char *newpath); static int (*real_utimes) (const char *path, const struct timeval times[2]); static int (*real_utime) (const char *path, const struct utimbuf *buf); +static int (*real_mknod) (const char *path, mode_t mode, dev_t dev); #define RESOLVE(sym) do { \ if (!real_##sym) \ @@ -1370,6 +1371,24 @@ utime (const char *path, const struct utimbuf *buf) return ret; } +int +mknod (const char *path, mode_t mode, dev_t dev) +{ + int ret = -1; + + ret = glusterfs_mknod (path, mode, dev); + if (((ret == -1) && (errno != ENODEV)) || (ret == 0)) + return ret; + + if (real_mknod) { + errno = ENOSYS; + ret = -1; + } else + ret = real_mknod (path, mode, dev); + + return ret; +} + pid_t fork (void) { @@ -1431,6 +1450,7 @@ _init (void) RESOLVE (rename); RESOLVE (utimes); RESOLVE (utime); + RESOLVE (mknod); /* This must be called after resolving real functions * above so that the socket based IO calls in libglusterfsclient -- cgit