On Tuesday 19 May 2015 20:50:03 Baolin Wang wrote:
+static inline void cputime_to_timespec(const cputime_t cputime,
struct timespec *value)
+{
struct timespec64 *ts64;
*ts64 = timespec_to_timespec64(*value);
cputime_to_timespec64(cputime, ts64);
Another mistake as before: derferencing an uninitialized pointer.
Arnd