https://github.com/torvalds/linux
Revision a33eb6b91034c95b9b08576f68be170f995b2c7d authored by Jörn Engel on 27 April 2010, 07:40:52 UTC, committed by Jens Axboe on 27 April 2010, 07:50:58 UTC
Removes one .h and one .c file that are never used outside of
mtdcore.c.

Signed-off-by: Joern Engel <joern@logfs.org>

Edited to remove on leftover debug define.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
1 parent e6d086d
Raw File
Tip revision: a33eb6b91034c95b9b08576f68be170f995b2c7d authored by Jörn Engel on 27 April 2010, 07:40:52 UTC
Move mtd_bdi_*mappable to mtdcore.c
Tip revision: a33eb6b
cred-internals.h
/* Internal credentials stuff
 *
 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public Licence
 * as published by the Free Software Foundation; either version
 * 2 of the Licence, or (at your option) any later version.
 */

/*
 * user.c
 */
static inline void sched_switch_user(struct task_struct *p)
{
#ifdef CONFIG_USER_SCHED
	sched_move_task(p);
#endif	/* CONFIG_USER_SCHED */
}

back to top