mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-20 19:17:21 +08:00
182 lines
5.3 KiB
C
182 lines
5.3 KiB
C
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
/*! @file
|
|
* @brief Check how rtems_bdbuf_read() handles two readers waiting
|
|
* for a buffer with the same block number in cases when disk device
|
|
* driver reports failure in read complete notification.
|
|
*
|
|
* Test sequence:
|
|
* -# Call rtems_bdbuf_read() function in thread #1 and block on
|
|
* waiting for read complete notification.
|
|
* -# Call rtems_bdbuf_read() function in thread #2 for the same
|
|
* block number. As the result it blocks on this read as well
|
|
* (but it will block on transfer semaphore).
|
|
* -# Disk device reports an error in read complete notification.
|
|
* As the result an error is returned from rtems_bdbuf_read() in
|
|
* thread #1.
|
|
* -# rtems_bdbuf_read() called in thread #2 should try to re-read
|
|
* data again so disk device ioctl() function is called again for
|
|
* this block number.
|
|
* -# Disk device reports an error in read complete notification.
|
|
* As the result an error is returned from rtems_bdbuf_read()
|
|
* in thread #2.
|
|
* .
|
|
*
|
|
* Copyright (C) 2010 OKTET Labs, St.-Petersburg, Russia
|
|
* Author: Oleg Kravtsov <Oleg.Kravtsov@oktetlabs.ru>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "bdbuf_tests.h"
|
|
|
|
static rtems_task bdbuf_test1_2_thread1(rtems_task_argument arg);
|
|
static rtems_task bdbuf_test1_2_thread2(rtems_task_argument arg);
|
|
|
|
#define TEST_BLK_NUM 20
|
|
|
|
void
|
|
bdbuf_test1_2_main()
|
|
{
|
|
bdbuf_test_msg msg;
|
|
|
|
TEST_START("Test 1.2");
|
|
|
|
START_THREAD(1, bdbuf_test1_2_thread1);
|
|
START_THREAD(2, bdbuf_test1_2_thread2);
|
|
|
|
/*
|
|
* Step 1:
|
|
* Thread #1 calls rtems_bdbuf_read() and we block
|
|
* this thread on data transfer operation.
|
|
*/
|
|
WAIT_DRV_MSG(&msg);
|
|
|
|
/*
|
|
* Step 2:
|
|
* Thread #2 calls rtems_bdbuf_read() for the same
|
|
* block number, as the result it shall block waiting
|
|
* on buffer state change.
|
|
*/
|
|
CONTINUE_THREAD(2);
|
|
|
|
/* Make sure thread #2 managed to block on the buffer. */
|
|
CHECK_THREAD_BLOCKED(2);
|
|
|
|
/*
|
|
* Step 3:
|
|
* Unblock thread #1 by reporting data transfer result.
|
|
*/
|
|
SEND_DRV_MSG(0, 0, RTEMS_IO_ERROR, EFAULT);
|
|
|
|
/*
|
|
* Wait for sync from thread #1.
|
|
*/
|
|
WAIT_THREAD_SYNC(1);
|
|
CONTINUE_THREAD(1);
|
|
TEST_CHECK_RESULT("3");
|
|
|
|
/*
|
|
* Step 4:
|
|
* For thread #2 bdbuf shall try to re-read data.
|
|
* As the result we will get read call to device driver.
|
|
*/
|
|
WAIT_DRV_MSG(&msg);
|
|
|
|
/* Check that thread #2 is still blocked */
|
|
CHECK_THREAD_BLOCKED(2);
|
|
/*
|
|
* Step 5:
|
|
* Report an error again from the driver.
|
|
*/
|
|
SEND_DRV_MSG(0, 0, RTEMS_IO_ERROR, EFAULT);
|
|
|
|
/*
|
|
* Wait for sync from thread #2.
|
|
*/
|
|
WAIT_THREAD_SYNC(2);
|
|
CONTINUE_THREAD(2);
|
|
TEST_CHECK_RESULT("5");
|
|
|
|
TEST_STOP();
|
|
}
|
|
|
|
static rtems_task
|
|
bdbuf_test1_2_thread1(rtems_task_argument arg)
|
|
{
|
|
rtems_status_code rc;
|
|
rtems_bdbuf_buffer *bd = NULL;
|
|
|
|
/*
|
|
* Step 1 - 3:
|
|
* Try to read blk #N on thread #1
|
|
* We will block on this read and meanwhile
|
|
* thread #2 will try to read the same block.
|
|
* After blocking on read in thread #2, device
|
|
* driver will notify about an error, and as the
|
|
* result this call will return an error.
|
|
*/
|
|
rc = rtems_bdbuf_read(test_dd, TEST_BLK_NUM, &bd);
|
|
if (rc != RTEMS_IO_ERROR || bd != NULL)
|
|
{
|
|
TEST_FAILED();
|
|
}
|
|
|
|
CONTINUE_MAIN(1);
|
|
|
|
THREAD_END();
|
|
}
|
|
|
|
static rtems_task
|
|
bdbuf_test1_2_thread2(rtems_task_argument arg)
|
|
{
|
|
rtems_status_code rc;
|
|
rtems_bdbuf_buffer *bd = NULL;
|
|
|
|
WAIT_MAIN_SYNC(2);
|
|
|
|
/*
|
|
* Step 2:
|
|
* Try to read block #N. Right now thread #1 is waiting
|
|
* on data transfer operation, so we will block here as well.
|
|
*
|
|
* Step 4:
|
|
* Due to the fact that thread #1 failed to read required block
|
|
* number, bdbuf library should ask for re-read data again.
|
|
* But main test task will agin tell device driver to return
|
|
* RTEMS_IO_ERROR data transfer result.
|
|
*/
|
|
rc = rtems_bdbuf_read(test_dd, TEST_BLK_NUM, &bd);
|
|
if (rc != RTEMS_IO_ERROR || bd != NULL)
|
|
{
|
|
TEST_FAILED();
|
|
}
|
|
|
|
CONTINUE_MAIN(2);
|
|
|
|
THREAD_END();
|
|
}
|