[lxc-devel] [lxc/lxc] 1a50d0: tree-wide: remove unneeded log prefixes

GitHub noreply at github.com
Wed Jul 4 16:21:49 UTC 2018


  Branch: refs/heads/stable-3.0
  Home:   https://github.com/lxc/lxc
  Commit: 1a50d04eca4fba7de309fb4e8a0292344ef68856
      https://github.com/lxc/lxc/commit/1a50d04eca4fba7de309fb4e8a0292344ef68856
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/af_unix.c
    M src/lxc/attach.c
    M src/lxc/caps.c
    M src/lxc/cgroups/cgfsng.c
    M src/lxc/cgroups/cgroup.c
    M src/lxc/commands.c
    M src/lxc/commands_utils.c
    M src/lxc/conf.c
    M src/lxc/confile.c
    M src/lxc/confile_utils.c
    M src/lxc/criu.c
    M src/lxc/error.c
    M src/lxc/execute.c
    M src/lxc/freezer.c
    M src/lxc/initutils.c
    M src/lxc/log.c
    M src/lxc/lsm/apparmor.c
    M src/lxc/lsm/lsm.c
    M src/lxc/lsm/selinux.c
    M src/lxc/lxccontainer.c
    M src/lxc/lxclock.c
    M src/lxc/monitor.c
    M src/lxc/namespace.c
    M src/lxc/network.c
    M src/lxc/parse.c
    M src/lxc/seccomp.c
    M src/lxc/start.c
    M src/lxc/state.c
    M src/lxc/sync.c
    M src/lxc/tools/arguments.c
    M src/lxc/utils.c

  Log Message:
  -----------
  tree-wide: remove unneeded log prefixes

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: 2c68cbd09fd950e81f7142db0c2065037fb0206b
      https://github.com/lxc/lxc/commit/2c68cbd09fd950e81f7142db0c2065037fb0206b
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/log.h

  Log Message:
  -----------
  log: cleanup

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: 0197b5a80f00a2712274c8ed9a3f9560485ff063
      https://github.com/lxc/lxc/commit/0197b5a80f00a2712274c8ed9a3f9560485ff063
  Author: 2xsec <dh48.jeong at samsung.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/log.c

  Log Message:
  -----------
  log: remove the trailing .

Signed-off-by: 2xsec <dh48.jeong at samsung.com>


  Commit: 4ef72886380584bca7c1386b820aad3e8294a929
      https://github.com/lxc/lxc/commit/4ef72886380584bca7c1386b820aad3e8294a929
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/cgroups/cgroup.c
    M src/lxc/cgroups/cgroup.h

  Log Message:
  -----------
  cgroups: remove is_crucial_cgroup_subsystem()

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: f00410294074a0cab8e0f1cec74bf34098bf567e
      https://github.com/lxc/lxc/commit/f00410294074a0cab8e0f1cec74bf34098bf567e
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/cgroups/cgfsng.c
    M src/lxc/cgroups/cgroup.c
    M src/lxc/cgroups/cgroup.h

  Log Message:
  -----------
  cgfsng: respect lxc.cgroup.use

If lxc.cgroup.use is specified then only those controllers listed in there will
be used others will be skipped.

Closes #2447.

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: 494b7bc3a15a3635864f548d9b17e7223b8d5036
      https://github.com/lxc/lxc/commit/494b7bc3a15a3635864f548d9b17e7223b8d5036
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  conf: use fd_cloexec()

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: 8f3352c3e14c1ef38eb3d84e19015531eba20555
      https://github.com/lxc/lxc/commit/8f3352c3e14c1ef38eb3d84e19015531eba20555
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  conf: safely retrieve path of slave device

openpty() is a horrible function that uses strcpy() into the char *name
argument if name != NULL. We can't rely on the path being sane in all cases so
let's split out the name retrieval to ttyname_r().

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


  Commit: 58343d36e21d8f1f3621c43023dfa319a90ec692
      https://github.com/lxc/lxc/commit/58343d36e21d8f1f3621c43023dfa319a90ec692
  Author: Christian Brauner <christian.brauner at ubuntu.com>
  Date:   2018-07-04 (Wed, 04 Jul 2018)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  conf: use mknod() to create dummy mount target

Signed-off-by: Christian Brauner <christian.brauner at ubuntu.com>


Compare: https://github.com/lxc/lxc/compare/506466a9f936...58343d36e21d
      **NOTE:** This service been marked for deprecation: https://developer.github.com/changes/2018-04-25-github-services-deprecation/

      Functionality will be removed from GitHub.com on January 31st, 2019.


More information about the lxc-devel mailing list