lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1159220043.12814.30.camel@nigel.suspend2.net>
Date:	Tue, 26 Sep 2006 07:34:03 +1000
From:	Nigel Cunningham <ncunningham@...uxmail.org>
To:	Stefan Seyfried <seife@...e.de>
Cc:	linux-kernel@...r.kernel.org, Pavel Machek <pavel@...e.cz>,
	"Rafael J. Wysocki" <rjw@...k.pl>, Andrew Morton <akpm@...l.org>
Subject: When will the lunacy end? (Was Re: [PATCH] uswsusp: add
	pmops->{prepare,enter,finish} support (aka "platform mode"))

Hi.

On Mon, 2006-09-25 at 09:13 +0200, Stefan Seyfried wrote:
> +	case SNAPSHOT_PMOPS:
> +		switch (arg) {
> +
> +		case PMOPS_PREPARE:
> +			if (pm_ops->prepare) {
> +				error = pm_ops->prepare(PM_SUSPEND_DISK);
> +			}
> +			break;
> +
> +		case PMOPS_ENTER:
> +			kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
> +			error = pm_ops->enter(PM_SUSPEND_DISK);
> +			break;
> +
> +		case PMOPS_FINISH:
> +			if (pm_ops && pm_ops->finish) {
> +				pm_ops->finish(PM_SUSPEND_DISK);
> +			}
> +			break;
> +
> +		default:
> +			printk(KERN_ERR "SNAPSHOT_PMOPS: invalid argument %ld\n", arg);
> +			error = -EINVAL;
> +
> +		}
> +		break;
> +
>  	default:
>  		error = -ENOTTY;

Guys! Why can't you see yet that all this uswsusp business is sheer
lunacy? All of the important code is done in the kernel, and must be
done in the kernel. Moving the little bit of high level logic that can
be done in userspace to userspace doesn't mean you're doing the
suspending in userspace.

If you have to use userspace for suspending, use it for the things that
don't matter, like the user interface, not the things that will break
suspending and resuming if they break.

</rant>

Nigel

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ