All of lore.kernel.org
 help / color / mirror / Atom feed
From: "G. Branden Robinson" <g.branden.robinson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Don Brace <don.brace-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>
Cc: "mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org"
	<mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	"linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Gerry Morong
	<gerry.morong-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	John Hall <John.Hall-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	Kevin Barnett
	<kevin.barnett-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	Bader Ali - Saleh
	<bader.alisaleh-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	Scott Teel <scott.teel-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	Justin Lindley
	<justin.lindley-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>,
	Scott Benesh
	<scott.benesh-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org>
Subject: Re: [PATCH] smartpqi: initial submit of smartpqi man page
Date: Fri, 20 Oct 2017 19:38:08 -0400	[thread overview]
Message-ID: <20171020233806.h63etx4r2hj3j5wt@crack.deadbeast.net> (raw)
In-Reply-To: <4993A297653ECB4581FA5C3C31323D196721BE80-d/0VHx0KLVy29+vl7/RAAEujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 3241 bytes --]

At 2017-10-20T22:10:55+0000, Don Brace wrote:
> > -----Original Message-----
> > From: G. Branden Robinson [mailto:g.branden.robinson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org]
> > I made many changes, most of them formatting-related.
> 
> Really appreciate your effort!

Thanks!

> > There are some issues I was unsure about; I left them in comments:

Just FYI, these were as much for Michael Kerrisk's feedback as yours.
I'm just a volunteer like most people on the linux-man list, so please
don't feel that all of these issues have to be resolved before the page
can make it in; Mr. Kerrisk is the gatekeeper.

> > To configure Microsemi Smart Family controllers, please refer to the
> > controller's User Guide documentation.
> > .\" Does this manual have a title?  Is it freely available online?
> > .\" Does it have a stable URL?  Can this information be moved to the SEE
> > .\" ALSO section?
> 
> There is currently no User Guide available on-line. The guide should be packaged with
> the controller. There is a Documentation/scsi/smartpqi.txt  entry.

My preference as a committed non-professional sysadmin is to never have
to dig up a piece of paper to find out how to configure my hardware.  :)

> > .\" What is "ioaccel"?  This string appears nowhere in man-pages HEAD.
> This is a term for RAID volumes. When an I/O request can go directly
> to a physical disk bypassing the RAID engine in the controller. This
> results in a performance gain.

I hope that's restricted to read operations.  ;-)

> > .\" This example line is too wide for an 80-column TTY.
> > .B cat /sys/class/scsi_disk/1:0:3:0/device/ssd_smart_path_enabled
> How about:
> cd /sys/class/scsi_disk/1:0:3:0/device/
> cat ssd_smart_path_enabled

I checked and the original too-wide line is also too wide on troff's
PostScript output device, and runs into the page margin.

Your solution is one obvious one; another would be to put a shell
line-continuation into the example.

.IP
For example:
.in +4n
.EX
.RB "$ " cat /sys/class/scsi_disk/1:0:3:0/device/\\e
.RB "> " ssd_smart_path_enabled
0
.EE
.in

Which renders as:

              For example:
                  $ cat /sys/class/scsi_disk/1:0:3:0/device/\
                  > ssd_smart_path_enabled
                  0

But with the user input in boldface.

> > .SS Supported \f[BI]ioctl\fP\/() operations
> > .\" Does this subsection belong here, under .SH FILES ?
> I see your point. This should be in a different section. We saw that hpsa.4 had
> done the same thing.
> 
> Should this be under NOTES?

Yup, I noticed that, too.  When Michael K. has a chance to review my
suggestions, I'm happy to supply patches to cciss(4) and hpsa(4) to
"parallelize" the three.

> > And here's one more I just thought of (forest, trees...).
> > 
> > Is "SmartPQI" the correct casing when referring to the product rather
> > than the kernel module?
> 
> The driver name is smartpqi, perhaps omitting the SmartPQI or SMARTPQI
> would be best for these sections.

I have no preference here; I just wanted to make sure the orthography
was right.  I don't want anyone getting flamed by their trademark
lawyer.  :D

-- 
Regards,
Branden

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  parent reply	other threads:[~2017-10-20 23:38 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-18 15:10 [PATCH] smartpqi: initial submit of smartpqi man page Don Brace
2017-10-19 21:36 ` G. Branden Robinson
     [not found]   ` <20171019213558.aelneujzgyucrye3-Z0uaYDh/Ni4SozaZsD9aTtHuzzzSOjJt@public.gmane.org>
2017-10-20 22:10     ` Don Brace
     [not found]       ` <4993A297653ECB4581FA5C3C31323D196721BE80-d/0VHx0KLVy29+vl7/RAAEujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>
2017-10-20 23:38         ` G. Branden Robinson [this message]
2017-10-31  7:10         ` Michael Kerrisk (man-opages)
     [not found]           ` <588a2c6e-f01c-f1e8-9fd0-cdcd414dc973-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-11-01  1:36             ` G. Branden Robinson
     [not found]               ` <20171101013656.urhyeq7h2ccclxzu-Z0uaYDh/Ni4SozaZsD9aTtHuzzzSOjJt@public.gmane.org>
2017-11-06 15:26                 ` Don Brace
     [not found]                   ` <4993A297653ECB4581FA5C3C31323D19698EAC78-d/0VHx0KLVxmlXRS5xiZ/kujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>
2017-11-14  7:11                     ` Michael Kerrisk (man-pages)
     [not found]                       ` <CAKgNAkiPn1aiBBwDOdds-WBbQY+NAfnh6QXhp9hBTU_3hhOBKQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-14 21:46                         ` Don Brace
     [not found]                           ` <4993A297653ECB4581FA5C3C31323D19698FB27C-d/0VHx0KLVy29+vl7/RAAEujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>
2017-11-15 12:00                             ` Michael Kerrisk (man-pages)
     [not found]                               ` <CAKgNAkgjsOA2CO5VUF-bYjuyBgr2aiBMZT2V0nvHwzm1sker8Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-17 16:56                                 ` Don Brace
     [not found]                                   ` <4993A297653ECB4581FA5C3C31323D19698FBDFC-d/0VHx0KLVy29+vl7/RAAEujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>
2017-11-17 19:31                                     ` Michael Kerrisk (man-pages)
2017-11-06 22:25             ` Don Brace
     [not found]               ` <4993A297653ECB4581FA5C3C31323D19698F062C-d/0VHx0KLVy29+vl7/RAAEujk09f5ZhB0e7PPNI6Mm0@public.gmane.org>
2017-11-07 19:06                 ` Theodore Dubois
     [not found]                   ` <97A12E88-D688-4DEB-A9B9-D14E38361BF9-mVuRI66OGLPQT0dZR+AlfA@public.gmane.org>
2017-11-07 20:24                     ` Don Brace

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=20171020233806.h63etx4r2hj3j5wt@crack.deadbeast.net \
    --to=g.branden.robinson-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=John.Hall-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=bader.alisaleh-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=don.brace-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=gerry.morong-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=justin.lindley-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=kevin.barnett-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=scott.benesh-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    --cc=scott.teel-dzo6w/eZyo2tG0bUXCXiUA@public.gmane.org \
    /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.