[PATCH] CREDITS: fix generation in out of tree builds

2014-08-14 Thread Mike Frysinger
The {...} code changes the working dir with `cd`, but the commands outside of that block expects to be in the original dir. Change to a subshell so the path outside of this block remains unchanged. * Makefile.am ($(srcdir)/CREDITS): Change {...} to (...). --- Makefile.am | 4 ++-- 1 file

Re: preparing for the next release

2014-08-14 Thread Mike Frysinger
On Thu 14 Aug 2014 01:04:47 Mike Frysinger wrote: i noticed that some new syscalls have been added to linux that we don't yet handle -- sched_setattr/sched_getattr/renameat2. the first two we prob want to stop now w/printargs, but renameat2 should be easy to decode. prob want to do that

Re: preparing for the next release

2014-08-14 Thread Dmitry V. Levin
On Thu, Aug 14, 2014 at 04:07:07AM -0400, Mike Frysinger wrote: On Thu 14 Aug 2014 01:04:47 Mike Frysinger wrote: i noticed that some new syscalls have been added to linux that we don't yet handle -- sched_setattr/sched_getattr/renameat2. the first two we prob want to stop now w/printargs,

Re: Fw: [PATCH] Add a function for dumping iovec in msghdr used in sendmsg and recvmsg

2014-08-14 Thread Dmitry V. Levin
On Mon, Aug 11, 2014 at 01:22:34PM +0900, Masatake YAMATO wrote: It seems that newer version will be released in soon. Yes, I hope to release 4.9 this week. Is newer patch still acceptable in this stage? I'd rather not add non-trivial code at this stage. If yes, could you look at the

Re: preparing for the next release

2014-08-14 Thread Mike Frysinger
On Fri 15 Aug 2014 04:50:56 Dmitry V. Levin wrote: On Thu, Aug 14, 2014 at 04:07:07AM -0400, Mike Frysinger wrote: On Thu 14 Aug 2014 01:04:47 Mike Frysinger wrote: i noticed that some new syscalls have been added to linux that we don't yet handle --