X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lnet%2Fselftest%2Ftimer.c;h=2b569dc6bc4dfe72f4e4add5b3361139947319d3;hp=4d7d4a5f3472b3d1cdd367c5d47d9dff34ecb8aa;hb=54320d7f52e6dd2b32e64997e2f7ae1ff1060f6f;hpb=6e3ec5812ebd1b5ecf7cae584f429b013ffe7431 diff --git a/lnet/selftest/timer.c b/lnet/selftest/timer.c index 4d7d4a5..2b569dc 100644 --- a/lnet/selftest/timer.c +++ b/lnet/selftest/timer.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -26,8 +24,10 @@ * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. + * + * Copyright (c) 2011, Whamcloud, Inc. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -181,6 +181,8 @@ stt_timer_main (void *arg) int rc = 0; UNUSED(arg); + SET_BUT_UNUSED(rc); + cfs_daemonize("st_timer"); cfs_block_allsigs(); @@ -206,7 +208,7 @@ stt_start_timer_thread (void) LASSERT (!stt_data.stt_shuttingdown); - pid = cfs_kernel_thread(stt_timer_main, NULL, 0); + pid = cfs_create_thread(stt_timer_main, NULL, 0); if (pid < 0) return (int)pid;