Lines Matching defs:now
446 hw_fib->header.u.ReceiverFibAddress = hw_fib->header.SenderFibAddress; /* Let the adapter now where to find its data */
635 * If the caller wanted us to wait for response wait now.
2355 static int aac_send_safw_hostttime(struct aac_dev *dev, struct timespec64 *now)
2366 local_time = (now->tv_sec - (sys_tz.tz_minuteswest * 60));
2384 static int aac_send_hosttime(struct aac_dev *dev, struct timespec64 *now)
2396 *info = cpu_to_le32(now->tv_sec); /* overflow in y2106 */
2468 struct timespec64 now;
2478 ktime_get_real_ts64(&now);
2481 if (((NSEC_PER_SEC - (NSEC_PER_SEC / HZ)) > now.tv_nsec)
2482 && (now.tv_nsec > (NSEC_PER_SEC / HZ)))
2484 now.tv_nsec / (NSEC_PER_SEC / HZ);
2486 if (now.tv_nsec > NSEC_PER_SEC / 2)
2487 ++now.tv_sec;
2491 aac_send_safw_hostttime(dev, &now);
2493 ret = aac_send_hosttime(dev, &now);