Shu Ming has uploaded a new change for review. Change subject: Use constants.EXT_DD definition ......................................................................
Use constants.EXT_DD definition In HSM_MailMonitor() constants.EXT_DD is used for 'dd' command. So should SPM_MailMonitor() do Change-Id: I0f8e054d2a6c51eaae74896e436c05bc7719fd74 Signed-off-by: Shu Ming <[email protected]> --- M vdsm/storage/storage_mailbox.py 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/03/8503/1 diff --git a/vdsm/storage/storage_mailbox.py b/vdsm/storage/storage_mailbox.py index b0e3360..213fdcd 100644 --- a/vdsm/storage/storage_mailbox.py +++ b/vdsm/storage/storage_mailbox.py @@ -485,12 +485,12 @@ # TODO: add support for multiple paths (multiple mailboxes) self._outgoingMail = self._outMailLen * "\0" self._incomingMail = self._outgoingMail - self._inCmd = ['dd', + self._inCmd = [ constants.EXT_DD, 'if=' + str(self._inbox), 'iflag=direct,fullblock', 'count=1' ] - self._outCmd = ['dd', + self._outCmd = [ constants.EXT_DD', 'of=' + str(self._outbox), 'oflag=direct', 'iflag=fullblock', -- To view, visit http://gerrit.ovirt.org/8503 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0f8e054d2a6c51eaae74896e436c05bc7719fd74 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Shu Ming <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
