Thread (6 messages) flat view 6 messages, 3 authors, 2019-06-13

Re: mmotm 2019-06-11-16-59 uploaded (ocfs2)

From: Randy Dunlap <rdunlap@infradead.org>
Date: 2019-06-13 16:53:12
Also in: linux-fsdevel, linux-mm, lkml

On 6/12/19 6:18 PM, Andrew Morton wrote:
quoted hunk ↗ jump to hunk
On Wed, 12 Jun 2019 07:15:30 -0700 Randy Dunlap [off-list ref] wrote:
quoted
On 6/11/19 4:59 PM, akpm@linux-foundation.org wrote:
quoted
The mm-of-the-moment snapshot 2019-06-11-16-59 has been uploaded to

   http://www.ozlabs.org/~akpm/mmotm/

mmotm-readme.txt says

README for mm-of-the-moment:

http://www.ozlabs.org/~akpm/mmotm/

This is a snapshot of my -mm patch queue.  Uploaded at random hopefully
more than once a week.

on i386:

ld: fs/ocfs2/dlmglue.o: in function `ocfs2_dlm_seq_show':
dlmglue.c:(.text+0x46e4): undefined reference to `__udivdi3'
Thanks.  This, I guess:
--- a/fs/ocfs2/dlmglue.c~ocfs2-add-locking-filter-debugfs-file-fix
+++ a/fs/ocfs2/dlmglue.c
@@ -3115,7 +3115,7 @@ static int ocfs2_dlm_seq_show(struct seq
 		 * otherwise, only dump the last N seconds active lock
 		 * resources.
 		 */
-		if ((now - last) / 1000000 > dlm_debug->d_filter_secs)
+		if (div_u64(now - last, 1000000) > dlm_debug->d_filter_secs)
 			return 0;
 	}
 #endif
review and test, please?
Builds for me.  Thanks.

Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested


-- 
~Randy
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help