From d35b9f645396577f22b033730420149453394fdc Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Tue, 22 Mar 2011 16:18:17 -0500 Subject: [PATCH] Fix ihandle.c indents ihandle.c had some blocks that were not indented. Indent them. Reviewed-on: http://gerrit.openafs.org/4273 Reviewed-by: Jeffrey Altman Reviewed-by: Derrick Brashear Tested-by: BuildBot (cherry picked from commit 9ac85bb2fd91baa4c3077d091f395f57e933018a) Change-Id: I83604d19759a183fa10989596734a405515ac19c Reviewed-on: http://gerrit.openafs.org/5759 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- src/vol/ihandle.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/vol/ihandle.c b/src/vol/ihandle.c index 6bfa80152..3e8a51298 100644 --- a/src/vol/ihandle.c +++ b/src/vol/ihandle.c @@ -468,9 +468,9 @@ fd_close(FdHandle_t * fdP) fdP->fd_refcnt--; if (fdP->fd_refcnt == 0) { - /* Put this descriptor back into the cache */ - fdP->fd_status = FD_HANDLE_OPEN; - DLL_INSERT_TAIL(fdP, fdLruHead, fdLruTail, fd_next, fd_prev); + /* Put this descriptor back into the cache */ + fdP->fd_status = FD_HANDLE_OPEN; + DLL_INSERT_TAIL(fdP, fdLruHead, fdLruTail, fd_next, fd_prev); } /* If this is not the only reference to the Inode then we can decrement @@ -511,13 +511,13 @@ fd_reallyclose(FdHandle_t * fdP) fdP->fd_refcnt--; if (fdP->fd_refcnt == 0) { - DLL_DELETE(fdP, ihP->ih_fdhead, ihP->ih_fdtail, fd_ihnext, fd_ihprev); - DLL_INSERT_TAIL(fdP, fdAvailHead, fdAvailTail, fd_next, fd_prev); + DLL_DELETE(fdP, ihP->ih_fdhead, ihP->ih_fdtail, fd_ihnext, fd_ihprev); + DLL_INSERT_TAIL(fdP, fdAvailHead, fdAvailTail, fd_next, fd_prev); - fdP->fd_status = FD_HANDLE_AVAIL; - fdP->fd_refcnt = 0; - fdP->fd_ih = NULL; - fdP->fd_fd = INVALID_FD; + fdP->fd_status = FD_HANDLE_AVAIL; + fdP->fd_refcnt = 0; + fdP->fd_ih = NULL; + fdP->fd_fd = INVALID_FD; } /* All the file descriptor handles have been closed; reset @@ -529,10 +529,10 @@ fd_reallyclose(FdHandle_t * fdP) } if (fdP->fd_refcnt == 0) { - IH_UNLOCK; - OS_CLOSE(closeFd); - IH_LOCK; - fdInUseCount -= 1; + IH_UNLOCK; + OS_CLOSE(closeFd); + IH_LOCK; + fdInUseCount -= 1; } /* If this is not the only reference to the Inode then we can decrement -- 2.39.5