All of lore.kernel.org
 help / color / mirror / Atom feed
From: Douglas Gilbert <dgilbert@interlog.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: linux-scsi@vger.kernel.org, martin.petersen@oracle.com,
	jejb@linux.vnet.ibm.com, hare@suse.de, bvanassche@acm.org
Subject: Re: [PATCH v3 03/20] sg: sg_log and is_enabled
Date: Tue, 13 Aug 2019 18:57:58 -0400	[thread overview]
Message-ID: <6c2854ab-aeef-e0dc-e756-c065745f82c3@interlog.com> (raw)
In-Reply-To: <20190812142305.GC8105@infradead.org>

On 2019-08-12 10:23 a.m., Christoph Hellwig wrote:
> On Wed, Aug 07, 2019 at 01:42:35PM +0200, Douglas Gilbert wrote:
>> Replace SCSI_LOG_TIMEOUT macros with SG_LOG macros across the driver.
>> The definition of SG_LOG calls SCSI_LOG_TIMEOUT if given and derived
>> pointers are non-zero, calls pr_info otherwise. SG_LOGS additionally
>> prints the sg device name and the thread id. The thread id is very
>> useful, even in single threaded invocations because the driver not
>> only uses the invocer's thread but also uses work queues and the
>> main callback (i.e. sg_rq_end_io()) may hit any thread. Some
>> interesting cases arise when the callback hits its invocer's
>> thread.
>>
>> SG_LOGS takes 48 bytes on the stack to build this printf format
>> string: "sg%u: tid=%d" whose size is clearly bounded above by
>> the maximum size of those two integers.
>> Protecting against the 'current' pointer being zero is for safety
>> and the case where the boot device is SCSI and the sg driver is
>> built into the kernel. Also when debugging, getting a message
>> from a compromised kernel can be very useful in pinpointing the
>> location of the failure.
>>
>> The simple fact that the SG_LOG macro is shorter than
>> SCSI_LOG_TIMEOUT macro allow more error message "payload" per line.
>>
>> Also replace #if and #ifdef conditional compilations with
>> the IS_ENABLED macro.
>>
>> Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>
>> ---
>>   drivers/scsi/sg.c | 252 +++++++++++++++++++++++-----------------------
>>   1 file changed, 125 insertions(+), 127 deletions(-)
>>
>> diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
>> index 6615777931f7..d14ba4a5441c 100644
>> --- a/drivers/scsi/sg.c
>> +++ b/drivers/scsi/sg.c
>> @@ -57,6 +57,15 @@ static char *sg_version_date = "20190606";
>>   
>>   #define SG_MAX_DEVS 32768
>>   
>> +/* Comment out the following line to compile out SCSI_LOGGING stuff */
>> +#define SG_DEBUG 1
>> +
>> +#if !IS_ENABLED(SG_DEBUG)
>> +#if IS_ENABLED(DEBUG)	/* If SG_DEBUG not defined, check for DEBUG */
>> +#define SG_DEBUG DEBUG
>> +#endif
>> +#endif
> 
> IS_ENABLED is mostly useful for checking it from C-level if statements.
> No need to use this from cpp.  But even more importantly we generally
> try to avoid cpp checks that aren't driven from Kconfig.  Please make
> these an actual CONFIG_ options.

Another reviewer (called James) didn't like #ifdef_s (at file scope).

Surely it is simpler to allow an experienced C programmer to add

#define DEBUG 1
   or
#define SG_DEBUG 1

to the driver source code than to add to the existing Linux config
nightmare with a new config parameter:
   CONFIG_CHR_DEV_SG_DEBUG

$ grep "^CONF" <linux-stable>/.config | wc
2480

on my system.
Linux: where too much is never enough.

>>   static int sg_read_oxfer(struct sg_request *srp, char __user *outp,
>> -			 int num_read_xfer);
>> +			 int num_xfer);
> 
> This looks like a random unrelated change.

Separate patch maybe :-)

>> -#define SZ_SG_HEADER sizeof(struct sg_header)
>> -#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
>> -#define SZ_SG_IOVEC sizeof(sg_iovec_t)
>> -#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
>> +#define SZ_SG_HEADER ((int)sizeof(struct sg_header))	/* v1 and v2 header */
>> +#define SZ_SG_IO_HDR ((int)sizeof(struct sg_io_hdr))	/* v3 header */
>> +#define SZ_SG_REQ_INFO ((int)sizeof(struct sg_req_info))
> 
> Doesn't look related to the patch.  But more importantly there should
> be no point to cast or even have the macros wrapping the sizeof to
> start with.

Well I find it useful as I spend a fair bit of time re-reading
my code. To me a dozen upper case letters is easier to decode
than a sea of parentheses.

And the tide is moving back against "unsigned" types, at least in
C++. It is now regarded as a mistake the way STL introduced lots
of "unsigned" types and they are looking at whether they can move
some of them back to int.
Closer to home, I use ints wherever possible and the kernel seems
to favour them with negated errno return values. However the compiler
mindlessly warns about signed/unsigned comparisons when an int is
compared to a sizeof(). [If it had half a brain, it would check the
_value_ of the sizeof, and realize that often, even on an 8 bit
machine, there is no reason for the warning.]

Then there is the "Fortran rule" in checkpatch.pl (i.e. no lines
than 80 characters). "(int)sizeof(struct sg_io_hdr)" is 30 characters
long and that length often pushes simple conditionals like:
     if (A > B)
onto two lines which IMO is stupid.

Doug Gilbert

  reply	other threads:[~2019-08-13 22:58 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-07 11:42 [PATCH v3 00/20] sg: add v4 interface Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 01/20] sg: move functions around Douglas Gilbert
2019-08-12 14:22   ` Christoph Hellwig
2019-08-07 11:42 ` [PATCH v3 02/20] sg: remove typedefs, type+formatting cleanup Douglas Gilbert
2019-08-12 14:22   ` Christoph Hellwig
2019-08-07 11:42 ` [PATCH v3 03/20] sg: sg_log and is_enabled Douglas Gilbert
2019-08-12 14:23   ` Christoph Hellwig
2019-08-13 22:57     ` Douglas Gilbert [this message]
2019-08-07 11:42 ` [PATCH v3 04/20] sg: rework sg_poll(), minor changes Douglas Gilbert
2019-08-12 14:23   ` Christoph Hellwig
2019-08-13  0:35     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 05/20] sg: bitops in sg_device Douglas Gilbert
2019-08-12 14:23   ` Christoph Hellwig
2019-08-14  1:35     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 06/20] sg: make open count an atomic Douglas Gilbert
2019-08-12 14:23   ` Christoph Hellwig
2019-08-07 11:42 ` [PATCH v3 07/20] sg: move header to uapi section Douglas Gilbert
2019-08-12 14:24   ` Christoph Hellwig
2019-08-12 14:32     ` Greg KH
2019-08-12 14:35     ` James Bottomley
2019-08-13  0:21     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 08/20] sg: speed sg_poll and sg_get_num_waiting Douglas Gilbert
2019-08-12 14:31   ` Christoph Hellwig
2019-08-12 16:31     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 09/20] sg: sg_allow_if_err_recovery and renames Douglas Gilbert
2019-08-12 14:31   ` Christoph Hellwig
2019-08-14  1:26     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 10/20] sg: remove most access_ok functions Douglas Gilbert
2019-08-12 14:32   ` Christoph Hellwig
2019-08-07 11:42 ` [PATCH v3 11/20] sg: replace rq array with lists Douglas Gilbert
2019-08-12 14:35   ` Christoph Hellwig
2019-08-13 23:46     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 12/20] sg: sense buffer rework Douglas Gilbert
2019-08-12 14:37   ` Christoph Hellwig
2019-08-12 16:26     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 13/20] sg: add sg v4 interface support Douglas Gilbert
2019-08-09 23:12   ` James Bottomley
2019-08-11 19:21     ` Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 14/20] sg: rework debug info Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 15/20] sg: add 8 byte SCSI LUN to sg_scsi_id Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 16/20] sg: expand sg_comm_wr_t Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 17/20] sg: add sg_iosubmit_v3 and sg_ioreceive_v3 ioctls Douglas Gilbert
2019-08-09 23:15   ` James Bottomley
2019-08-12 15:37     ` Douglas Gilbert
2019-08-12 16:14       ` Tony Battersby
2019-08-12 18:46         ` James Bottomley
2019-08-12 19:37           ` Tony Battersby
2019-08-07 11:42 ` [PATCH v3 18/20] sg: add some __must_hold macros Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 19/20] sg: first debugfs support Douglas Gilbert
2019-08-07 11:42 ` [PATCH v3 20/20] sg: bump version to 4.0.03 Douglas Gilbert
2019-08-08 19:10 ` [PATCH v3 00/20] sg: add v4 interface James Bottomley
2019-08-08 21:08   ` Douglas Gilbert
2019-08-08 21:37     ` Tony Battersby
2019-08-08 22:25       ` Bart Van Assche
2019-08-09 13:28         ` Tony Battersby
2019-08-08 23:00     ` James Bottomley
2019-08-14  4:19       ` Douglas Gilbert
2019-08-15 17:30         ` Bart Van Assche
2019-08-16 15:59           ` Douglas Gilbert
2019-08-16 17:19             ` Greg KH
2019-08-16 18:10             ` Bart Van Assche
2019-08-16 18:44               ` Douglas Gilbert
2019-08-12 15:23   ` Christoph Hellwig

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=6c2854ab-aeef-e0dc-e756-c065745f82c3@interlog.com \
    --to=dgilbert@interlog.com \
    --cc=bvanassche@acm.org \
    --cc=hare@suse.de \
    --cc=hch@infradead.org \
    --cc=jejb@linux.vnet.ibm.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.