Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 295267
b: refs/heads/master
c: 70834d3
h: refs/heads/master
i:
  295265: 8a2f873
  295263: 7f3f451
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Mar 23, 2012
1 parent 521034e commit 46ba57a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a02d6fd643cbd4c559113b35b31d3b04e4ec60c7
refs/heads/master: 70834d3070c3f3015ab5c05176d54bd4a0100546
2 changes: 1 addition & 1 deletion trunk/drivers/block/drbd/drbd_nl.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ int drbd_khelper(struct drbd_conf *mdev, char *cmd)
dev_info(DEV, "helper command: %s %s %s\n", usermode_helper, cmd, mb);

drbd_bcast_ev_helper(mdev, cmd);
ret = call_usermodehelper(usermode_helper, argv, envp, 1);
ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC);
if (ret)
dev_warn(DEV, "helper command: %s %s %s exit code %u (0x%x)\n",
usermode_helper, cmd, mb,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/rtl8187se/r8180_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4159,7 +4159,7 @@ void GPIOChangeRFWorkItemCallBack(struct work_struct *work)
argv[0] = RadioPowerPath;
argv[2] = NULL;

call_usermodehelper(RadioPowerPath, argv, envp, 1);
call_usermodehelper(RadioPowerPath, argv, envp, UMH_WAIT_PROC);
}
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/rtl8192e/rtl_dm.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static void dm_check_ac_dc_power(struct net_device *dev)

if (priv->rtllib->state != RTLLIB_LINKED)
return;
call_usermodehelper(ac_dc_check_script_path, argv, envp, 1);
call_usermodehelper(ac_dc_check_script_path, argv, envp, UMH_WAIT_PROC);

return;
};
Expand Down Expand Up @@ -2296,7 +2296,7 @@ void dm_CheckRfCtrlGPIO(void *data)

argv[0] = RadioPowerPath;
argv[2] = NULL;
call_usermodehelper(RadioPowerPath, argv, envp, 1);
call_usermodehelper(RadioPowerPath, argv, envp, UMH_WAIT_PROC);
}
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/uvesafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int uvesafb_helper_start(void)
NULL,
};

return call_usermodehelper(v86d_path, argv, envp, 1);
return call_usermodehelper(v86d_path, argv, envp, UMH_WAIT_PROC);
}

/*
Expand Down
2 changes: 1 addition & 1 deletion trunk/security/tomoyo/load_policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void tomoyo_load_policy(const char *filename)
envp[0] = "HOME=/";
envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
envp[2] = NULL;
call_usermodehelper(argv[0], argv, envp, 1);
call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
tomoyo_check_profile();
}

Expand Down

0 comments on commit 46ba57a

Please sign in to comment.