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: <20071113205544.2a7743b4.akpm@linux-foundation.org>
Date:	Tue, 13 Nov 2007 20:55:44 -0800
From:	Andrew Morton <akpm@...ux-foundation.org>
To:	Gabriel C <nix.or.die@...glemail.com>
Cc:	linux-kernel@...r.kernel.org, Ulrich Drepper <drepper@...hat.com>,
	Roland McGrath <roland@...hat.com>
Subject: Re: 2.6.24-rc2-mm1

On Wed, 14 Nov 2007 04:41:38 +0100 Gabriel C <nix.or.die@...glemail.com> wrote:

> Uff clone-prepare-to-recycle-clone_detached-and-clone_stopped.patch *really* spams.
> Looks like some programs are using this 'deprecated flag'. 
> 
> Could this have some CONFIG_SPAM_ME_PLEASE ?;)
> 
> This is what I got in some minutes :
> 
> 
> --dmesg|grep 'used deprecated clone flags'|sed 's/.*] //'|sort -u
> fork(): process `artsd' used deprecated clone flags 0x400000
> fork(): process `firefox-bin' used deprecated clone flags 0x400000
> fork(): process `gcompris' used deprecated clone flags 0x400000
> fork(): process `qgit' used deprecated clone flags 0x400000
> fork(): process `thunderbird-bin' used deprecated clone flags 0x400000
> fork(): process `wish' used deprecated clone flags 0x400000
> fork(): process `xchat' used deprecated clone flags 0x400000
> fork(): process `kdbus' used deprecated clone flags 0x400000
> 
> --dmesg|grep 'used deprecated clone flags'|wc -l
> 151

hm, that was supposed to shut itself off after 100 messages:

	if (unlikely(clone_flags & (CLONE_DETACHED|CLONE_STOPPED))) {
		static int __read_mostly count = 100;

		if (count && printk_ratelimit()) {
			char comm[TASK_COMM_LEN];

			count--;
			printk(KERN_INFO "fork(): process `%s' used deprecated "
					"clone flags 0x%lx\n",
				get_task_comm(comm, current),
				clone_flags & (CLONE_DETACHED|CLONE_STOPPED));
		}
	}

I don't see how you got 151 instances.  I guess I'm having another stupid
day.

Oh well.  That's CLONE_DETACHED and I think Ulrich's question just got
answered.

Which distro/version are you running?

Thanks for letting us know....
-
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