Re: [PATCH v4] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-04 Thread Ursula Braun
thx, Aya. This time you forgot this part: --- a/drivers/s390/net/ctcm_sysfs.c +++ b/drivers/s390/net/ctcm_sysfs.c @@ -100,8 +100,8 @@ static void ctcm_print_statistics(struct priv->channel[WRITE]->prof.doios_multi); p += sprintf(p, " Netto bytes written: %ld\n",

Re: [PATCH v4] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-04 Thread Ursula Braun
thx, Aya. This time you forgot this part: --- a/drivers/s390/net/ctcm_sysfs.c +++ b/drivers/s390/net/ctcm_sysfs.c @@ -100,8 +100,8 @@ static void ctcm_print_statistics(struct priv-channel[WRITE]-prof.doios_multi); p += sprintf(p, Netto bytes written: %ld\n,

[PATCH v4] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-03 Thread Aya Mahfouz
This patch is concerned with migrating the time variables for the s390 network driver. The changes handle the y2038 problem where timespec will overflow in the year 2038. timespec was replaced by unsigned long and all time variables get their values from the jiffies global variable. This was done

[PATCH v4] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-03 Thread Aya Mahfouz
This patch is concerned with migrating the time variables for the s390 network driver. The changes handle the y2038 problem where timespec will overflow in the year 2038. timespec was replaced by unsigned long and all time variables get their values from the jiffies global variable. This was done