Explorar o código

orangefs: remove unused 'diff' function

orangefs contains a helper function to calculate the difference
between two timeval structures. We are trying to remove all
instances of timespec from the kernel, and this one is not
used at all, so let's remove it now.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Arnd Bergmann %!s(int64=9) %!d(string=hai) anos
pai
achega
401898eed7
Modificáronse 1 ficheiros con 0 adicións e 11 borrados
  1. 0 11
      fs/orangefs/orangefs-kernel.h

+ 0 - 11
fs/orangefs/orangefs-kernel.h

@@ -662,15 +662,4 @@ static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size)
 #endif
 #endif
 }
 }
 
 
-static inline unsigned int diff(struct timeval *end, struct timeval *begin)
-{
-	if (end->tv_usec < begin->tv_usec) {
-		end->tv_usec += 1000000;
-		end->tv_sec--;
-	}
-	end->tv_sec -= begin->tv_sec;
-	end->tv_usec -= begin->tv_usec;
-	return (end->tv_sec * 1000000) + end->tv_usec;
-}
-
 #endif /* __ORANGEFSKERNEL_H */
 #endif /* __ORANGEFSKERNEL_H */