Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Howells
David Miller wrote: > From: Aya Mahfouz > Date: Wed, 18 Nov 2015 08:36:44 +0200 > > > Changes the definition of the pointer _expiry from time_t to > > time64_t. This is to handle the Y2038 problem where time_t > > will overflow in the year 2038. The change is safe because > > the kernel

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Miller
From: Arnd Bergmann Date: Wed, 18 Nov 2015 22:08:54 +0100 > On Wednesday 18 November 2015 15:20:25 David Miller wrote: >> From: Aya Mahfouz >> Date: Wed, 18 Nov 2015 08:36:44 +0200 >> >> > Changes the definition of the pointer _expiry from time_t to >> > time64_t. This is to handle the Y2038

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread Arnd Bergmann
On Wednesday 18 November 2015 15:20:25 David Miller wrote: > From: Aya Mahfouz > Date: Wed, 18 Nov 2015 08:36:44 +0200 > > > Changes the definition of the pointer _expiry from time_t to > > time64_t. This is to handle the Y2038 problem where time_t > > will overflow in the year 2038. The change

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Miller
From: Aya Mahfouz Date: Wed, 18 Nov 2015 08:36:44 +0200 > Changes the definition of the pointer _expiry from time_t to > time64_t. This is to handle the Y2038 problem where time_t > will overflow in the year 2038. The change is safe because > the kernel subsystems that call dns_query pass NULL.

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Miller
From: Aya Mahfouz Date: Wed, 18 Nov 2015 08:36:44 +0200 > Changes the definition of the pointer _expiry from time_t to > time64_t. This is to handle the Y2038 problem where time_t > will overflow in the year 2038. The change is safe because > the kernel subsystems

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Howells
David Miller wrote: > From: Aya Mahfouz > Date: Wed, 18 Nov 2015 08:36:44 +0200 > > > Changes the definition of the pointer _expiry from time_t to > > time64_t. This is to handle the Y2038 problem where time_t > > will overflow in the year

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread Arnd Bergmann
On Wednesday 18 November 2015 15:20:25 David Miller wrote: > From: Aya Mahfouz > Date: Wed, 18 Nov 2015 08:36:44 +0200 > > > Changes the definition of the pointer _expiry from time_t to > > time64_t. This is to handle the Y2038 problem where time_t > > will

Re: [PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-18 Thread David Miller
From: Arnd Bergmann Date: Wed, 18 Nov 2015 22:08:54 +0100 > On Wednesday 18 November 2015 15:20:25 David Miller wrote: >> From: Aya Mahfouz >> Date: Wed, 18 Nov 2015 08:36:44 +0200 >> >> > Changes the definition of the pointer _expiry from time_t

[PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-17 Thread Aya Mahfouz
Changes the definition of the pointer _expiry from time_t to time64_t. This is to handle the Y2038 problem where time_t will overflow in the year 2038. The change is safe because the kernel subsystems that call dns_query pass NULL. Signed-off-by: Arnd Bergmann Signed-off-by: Aya Mahfouz ---

[PATCH] net: dns_resolver: convert time_t to time64_t

2015-11-17 Thread Aya Mahfouz
Changes the definition of the pointer _expiry from time_t to time64_t. This is to handle the Y2038 problem where time_t will overflow in the year 2038. The change is safe because the kernel subsystems that call dns_query pass NULL. Signed-off-by: Arnd Bergmann Signed-off-by: Aya