View | Details | Raw Unified | Return to bug 143352
Collapse All | Expand All

(-)mount/mount.c (-1 / +2 lines)
Lines 461-467 Link Here
461
	if ((flags & MS_MGC_MSK) == 0)
461
	if ((flags & MS_MGC_MSK) == 0)
462
		flags |= MS_MGC_VAL;
462
		flags |= MS_MGC_VAL;
463
463
464
	ret = mount (args->spec, args->node, args->type, flags, args->data);
464
	/* don't pass MS_HOTPLUG to the kernel (Bug: 143352) */
465
	ret = mount (args->spec, args->node, args->type, flags & !MS_HOTPLUG, args->data);
465
	if (ret == 0)
466
	if (ret == 0)
466
		mountcount++;
467
		mountcount++;
467
	return ret;
468
	return ret;

Return to bug 143352