Hey, Just a minor mistake spotted while skimming through the patch.
Le 23/04/2012 00:18, Marcin Slusarz a ?crit : > +static inline uint64_t nv_timeout(struct drm_device *dev) > +{ > + uint64_t tm = 2000000000ULL; > + if (nouveau_gpu_reset_in_progress(dev)) > + tm /= 40; /* 50ms */ This will cause a problem on 32 bit kernels. You should use do_div. Martin