From: Cyril Hrubis <chrubis@suse.cz>
To: Andrea Cervesato <andrea.cervesato@suse.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v1] Add common.h utilities for aiodio tests
Date: Tue, 30 Nov 2021 11:46:05 +0100 [thread overview]
Message-ID: <YaYA7T+HrErmmJMf@yuki> (raw)
In-Reply-To: <20211130100934.1674-1-andrea.cervesato@suse.com>
Hi!
> +// SPDX-License-Identifier: GPL-2.0-or-later
> +/*
> + * Copyright (C) 2021 SUSE LLC Andrea Cervesato <andrea.cervesato@suse.com>
> + */
> +
> +/*\
> + * [Description]
> + *
> + * Common utilities for aiodio tests.
> + */
There is no point in using the docparse comments in headers, these are
only parsed in tests.
Also the header should include guards here:
#ifndef AIODIO_COMMON_H__
#define AIODIO_COMMON_H__
> +#include <stdlib.h>
> +#include "tst_test.h"
> +
> +static char *check_zero(char *buf, int size)
> +{
> + char *p;
> +
> + p = buf;
> +
> + while (size > 0) {
> + if (*buf != 0) {
> + tst_res(TINFO,
> + "non zero buffer at buf[%lu] => 0x%02x,%02x,%02x,%02x",
> + buf - p, (unsigned int)buf[0],
> + size > 1 ? (unsigned int)buf[1] : 0,
> + size > 2 ? (unsigned int)buf[2] : 0,
> + size > 3 ? (unsigned int)buf[3] : 0);
> + tst_res(TINFO, "buf %p, p %p", buf, p);
> + return buf;
> + }
> + buf++;
> + size--;
> + }
> +
> + return 0;
> +}
> +
> +static void io_append(const char *path, char pattern, int flags, size_t bs, size_t bcount)
> +{
> + int fd;
> + size_t i;
> + char *bufptr;
> +
> + bufptr = SAFE_MEMALIGN(getpagesize(), bs);
> + memset(bufptr, pattern, bs);
> +
> + fd = SAFE_OPEN(path, flags, 0666);
> +
> + for (i = 0; i < bcount; i++)
> + SAFE_WRITE(1, fd, bufptr, bs);
> +
> + free(bufptr);
> + SAFE_CLOSE(fd);
> +}
And the guards should end here with:
#endif /* AIODIO_COMMON_H__ */
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
prev parent reply other threads:[~2021-11-30 10:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-30 10:09 [LTP] [PATCH v1] Add common.h utilities for aiodio tests Andrea Cervesato via ltp
2021-11-30 10:46 ` Cyril Hrubis [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YaYA7T+HrErmmJMf@yuki \
--to=chrubis@suse.cz \
--cc=andrea.cervesato@suse.com \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox