From 306f72b640aeaaf969bcd94d3d2c6168e2ad717c Mon Sep 17 00:00:00 2001 From: Jungwon Lee Date: Tue, 4 Aug 2026 14:07:59 +0900 Subject: [PATCH] engines/io_uring: add copyright header to bsg files Add the copyright header to bsg.c and bsg.h, which provide BSG (Block SCSI Generic) support for the io_uring_cmd engine. The files were previously committed without a license header. Signed-off-by: Jungwon Lee --- engines/bsg.c | 6 ++++++ engines/bsg.h | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/engines/bsg.c b/engines/bsg.c index 372212ef84..916dc2424f 100644 --- a/engines/bsg.c +++ b/engines/bsg.c @@ -1,3 +1,9 @@ +/* + * Copyright 2026 Samsung Electronics Co., Ltd All Rights Reserved + * + * For conditions of distribution and use, see the accompanying COPYING file. + * + */ #include "bsg.h" int fio_bsg_uring_cmd_read_capacity(struct thread_data *td, unsigned int *bs, diff --git a/engines/bsg.h b/engines/bsg.h index 6a4bfd0728..da64b9997d 100644 --- a/engines/bsg.h +++ b/engines/bsg.h @@ -1,6 +1,11 @@ /* * bsg structure declarations and helper functions for the * io_uring_cmd engine. + * + * Copyright 2026 Samsung Electronics Co., Ltd All Rights Reserved + * + * For conditions of distribution and use, see the accompanying COPYING file. + * */ #ifndef FIO_BSG_H