Hi all, Today's linux-next merge of the tty tree got conflicts in: include/linux/kfifo.h lib/kfifo.c between commit: a8372870a0ae ("kfifo: don't use "proxy" headers") from the mm-nonmm-unstable branch of the mm tree and commit: d52b761e4b1a ("kfifo: add kfifo_dma_out_prepare_mapped()") from the tty tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc include/linux/kfifo.h index 6b28d642f332,d613748de7ff..000000000000 --- a/include/linux/kfifo.h +++ b/include/linux/kfifo.h @@@ -36,15 -36,11 +36,16 @@@ * to lock the reader. */ +#include + #include -#include #include #include -#include +#include + +#include +#include + +struct scatterlist; struct __kfifo { unsigned int in; diff --cc lib/kfifo.c index 15acdee4a8f3,75ce9225548a..000000000000 --- a/lib/kfifo.c +++ b/lib/kfifo.c @@@ -5,13 -5,14 +5,14 @@@ * Copyright (C) 2009/2010 Stefani Seibold */ -#include + #include -#include -#include #include -#include -#include +#include #include +#include +#include +#include +#include /* * internal helper to calculate the unused elements in a fifo