~ubuntu-branches/ubuntu/lucid/linux-lts-backport-natty/lucid-proposed

« back to all changes in this revision

Viewing changes to security/tomoyo/load_policy.c

  • Committer: Package Import Robot
  • Author(s): Luis Henriques, Luis Henriques, Brad Figg, Tim Gardner, Upstream Kernel Changes
  • Date: 2012-04-30 09:52:55 UTC
  • Revision ID: package-import@ubuntu.com-20120430095255-g0yv3fiv60u8ob36
Tags: 2.6.38-15.59~lucid1
[Luis Henriques]

* Release Tracking Bug
  - LP: #990208

[ Brad Figg ]

* SAUCE (no-up) Provide a param for allowing the BIOS to handle changing
  the brightness on AC/battery status changes.
  - LP: #949311

[ Tim Gardner ]

* SAUCE: ubuntu drivers: use UMH_WAIT_PROC consistently
  - LP: #963685
* SAUCE: disable_nx should not be in __cpuinitdata section for X86_32
  - LP: #968233
* SAUCE: (no-up) remove __initdata from vesafb_fix
  - LP: #969309

[ Upstream Kernel Changes ]

* usermodehelper: use UMH_WAIT_PROC consistently
  - LP: #963685
* usermodehelper: introduce umh_complete(sub_info)
  - LP: #963685
* usermodehelper: implement UMH_KILLABLE
  - LP: #963685
* usermodehelper: kill umh_wait, renumber UMH_* constants
  - LP: #963685
* usermodehelper: ____call_usermodehelper() doesn't need do_exit()
  - LP: #963685
* kmod: introduce call_modprobe() helper
  - LP: #963685
* kmod: make __request_module() killable
  - LP: #963685
* drm/i915: Fixes distorted external screen image on HP 2730p
  - LP: #796030
* ext4: fix undefined behavior in ext4_fill_flex_info()
  - LP: #984757
  - CVE-2012-2100
* jbd2: clear BH_Delay & BH_Unwritten in journal_unmap_buffer
  - LP: #929781
  - CVE-2011-4086
* cifs: fix dentry refcount leak when opening a FIFO on lookup
  - LP: #947997
  - CVE-2012-1090

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        envp[0] = "HOME=/";
77
77
        envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
78
78
        envp[2] = NULL;
79
 
        call_usermodehelper(argv[0], argv, envp, 1);
 
79
        call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
80
80
        tomoyo_check_profile();
81
81
}