Re: CVS commit: src/sys/external/bsd/drm2/include/linux

2014-07-26 Thread Alan Barrett
On Sat, 26 Jul 2014, Taylor R Campbell wrote: Make Linux usecs_to_jiffies work with hz up to 2000. usecs_to_jiffies(unsigned int usec) { - return mstohz((usec + (1000 / hz) - 1) / (1000 / hz)); + if (hz = 100) + return mstohz(roundup(usec, (1000 / hz))); + + /*

Re: CVS commit: src/usr.sbin/sysinst

2014-07-26 Thread Izumi Tsutsui
dholland@ wrote: Module Name: src Committed By: dholland Date: Sat Jul 26 19:56:30 UTC 2014 Modified Files: src/usr.sbin/sysinst: Makefile Added Files: src/usr.sbin/sysinst/arch/dummy: Makefile md.c md.h msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl

Re: CVS commit: src/sys/external/bsd/dwc2/dist

2014-07-26 Thread Takahiro HAYASHI
(07/26/14 18:18), Nick Hudson wrote: Log Message: Recover from channel halt errors by using the 3 strikes xacterr rule. Adapted from the RaspberryPI linux driver. This allows the rum(4) I was sent to be somewhat usable. Need to investigate further what is causing the problem in the first