Re: [PATCH 3/4] Add the necessary infrastructure to serve passive translators

2013-07-20 Thread Samuel Thibault
Applied, thanks. Samuel

Re: [PATCH 1/4] Fix procfs_node_chmod

2013-07-20 Thread Samuel Thibault
Justus Winter, le Tue 16 Jul 2013 10:51:20 +0200, a écrit : > Formerly only the mode_t bits cut out by S_IFMT were preserved, but > this does not include S_IPTRANS. Fix this by preserving everything but > the permission bits. Applied, using ALLPERMS instead of hardcoded value. Thanks, Samuel

Re: [PATCH 2/4] Fix default file ownership

2013-07-20 Thread Samuel Thibault
Justus Winter, le Tue 16 Jul 2013 10:51:21 +0200, a écrit : > Formerly all nodes were created so that they were owned by root:root > by default. This causes problems if the procfs translator is running > as unprivileged user and serves passive translator records, because > the file ownership is bei

Re: [PATCH] procfs: Ignore arguments for compatibility with Linux' procfs.

2013-07-20 Thread Samuel Thibault
Justus Winter, le Tue 09 Jul 2013 08:22:09 +0200, a écrit : > Ignore the --nodev, --noexec and --nosuid arguments. Applied, thanks! Samuel

Re: [PATCH 02/17] pfinet: Fix call to kfree_s

2013-07-20 Thread Samuel Thibault
Justus Winter, le Fri 19 Jul 2013 17:25:04 +0200, a écrit : > kfree_s expects a pointer and a size argument. Currently the > sizeof(cache) is used as size argument, this is certainly not what was > intented. Applied using sizeof(*cache), which is more obviously correct. Thanks! Samuel