All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL -perfbook] Bibliography and misc updates
@ 2021-02-27  1:26 Akira Yokosawa
  2021-02-27 19:21 ` Paul E. McKenney
  0 siblings, 1 reply; 2+ messages in thread
From: Akira Yokosawa @ 2021-02-27  1:26 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

Hi Paul,

This pull request consists of updates in bibliography and other minor
tweaks.

Patch 1/10 is a trivial typo fix.
Patch 2/10 is another attempt to improve looks of performance plots
in datastruct.
Patch 3/10 moves floating snippets to prevent section headings from
being orphaned.
Patch 4/10 fixes spacing after full stops (.).
Patch 5/10 contains quite a few URL and other updates. Some of the
broken links are salvaged, other links are marked as broken.
One of the notable broken links is the Dr. Dobbs journal.
I tried to salvage it and found an archive site at
https://www.drdobbs.com/, but have not figured out the way to reach
the "Effective concurrency" series.
Patches 6/10 to 10/10 are updates and fixes in citation side.

I'm afraid most commits lack explanations in their change logs.
If you'd prefer more verbose change logs, I'm willing to respin. 

        Thanks, Akira

--
The following changes since commit 2060b54a52ffaaea818807f7e602a168d46c4d50:

  advsync: Add LIFO Push and pointer zap (2021-02-23 21:11:55 -0800)

are available in the Git repository at:

  https://github.com/akiyks/perfbook.git tags/for-paul-2021.02.27b

for you to fetch changes up to e51fe38dbbb582f001f8a9b8566e2f388a874898:

  Update citations to 'Hennessy & Patterson (2021-02-27 09:59:39 +0900)

----------------------------------------------------------------
Akira Yokosawa (10):
      defer/rcuusage: Add missing preposition
      datastruct: Use consistent dashtype for performance plot
      advsync: Move floating code snippet away from section heading
      treewide: Adjust spacing after full stops
      bib: url/doi updates
      Use newer/updated bibliography entries
      bib/os: Substitute marc.info for marc.theaimsgroup.com
      bib/RCU: Add url to US patents of www.google.com/patents
      locking: Replace bibliography entry to avoid duplicates
      Update citations to 'Hennessy & Patterson

 .../hash/data/hps.perf.2020.11.26a/README          | 10 ++++
 .../hash/data/hps.perf.2020.11.26a/perftest.eps    | 12 ++--
 .../hash/data/hps.perf.2020.11.26a/perftestlin.eps | 11 ++--
 .../hash/data/hps.perf.2020.11.26a/plots.sh        | 36 ++++++------
 .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps | 12 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocatall.eps   | 11 ++--
 .../data/hps.perf.2020.11.26a/zoocatalllin.eps     |  9 +--
 .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps  | 11 ++--
 .../data/hps.perf.2020.11.26a/zoocatonlylin.eps    |  7 ++-
 .../data/hps.perf.2020.11.26a/zoocpu-unsync.eps    | 13 +++--
 .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps | 10 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpu.eps      | 11 ++--
 .../data/hps.perf.2020.11.26a/zoocpubktlin.eps     |  5 +-
 .../data/hps.perf.2020.11.26a/zoocpubktlin8.eps    |  6 +-
 .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps |  4 +-
 .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps   |  8 +--
 .../data/hps.perf.2020.11.26a/zoocpulinqsbr.eps    | 10 ++--
 .../hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps   | 11 ++--
 .../hash/data/hps.perf.2020.11.26a/zooupdate.eps   |  5 +-
 .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps |  5 +-
 .../data/hps.perf.2020.11.26a/zooupdatelulin.eps   |  5 +-
 SMPdesign/partexercises.tex                        |  2 +-
 advsync/advsync.tex                                | 44 +++++++-------
 appendix/styleguide/styleguide.tex                 |  8 +--
 appendix/whymb/whymemorybarriers.tex               |  2 +-
 bib/RCU.bib                                        | 49 +++++++++-------
 bib/TM.bib                                         | 18 +++---
 bib/WFS.bib                                        | 13 ++++-
 bib/hw.bib                                         | 67 +++++++++++++---------
 bib/maze.bib                                       |  6 +-
 bib/os.bib                                         | 64 +++++++++++----------
 bib/perfmeas.bib                                   |  1 +
 bib/realtime.bib                                   |  8 +--
 bib/refs.bib                                       |  3 +
 bib/search.bib                                     |  1 +
 bib/swtools.bib                                    |  7 ++-
 bib/syncrefs.bib                                   | 45 ++++++++++-----
 cpu/cpu.tex                                        |  2 +-
 cpu/overview.tex                                   |  2 +-
 defer/rcurelated.tex                               |  4 +-
 defer/rcuusage.tex                                 |  2 +-
 defer/whichtochoose.tex                            |  2 +-
 future/tm.tex                                      |  2 +-
 howto/howto.tex                                    |  4 +-
 locking/locking.tex                                |  4 +-
 memorder/memorder.tex                              |  2 +-
 owned/owned.tex                                    |  2 +-
 47 files changed, 329 insertions(+), 247 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL -perfbook] Bibliography and misc updates
  2021-02-27  1:26 [GIT PULL -perfbook] Bibliography and misc updates Akira Yokosawa
@ 2021-02-27 19:21 ` Paul E. McKenney
  0 siblings, 0 replies; 2+ messages in thread
From: Paul E. McKenney @ 2021-02-27 19:21 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Sat, Feb 27, 2021 at 10:26:07AM +0900, Akira Yokosawa wrote:
> Hi Paul,
> 
> This pull request consists of updates in bibliography and other minor
> tweaks.
> 
> Patch 1/10 is a trivial typo fix.
> Patch 2/10 is another attempt to improve looks of performance plots
> in datastruct.
> Patch 3/10 moves floating snippets to prevent section headings from
> being orphaned.
> Patch 4/10 fixes spacing after full stops (.).
> Patch 5/10 contains quite a few URL and other updates. Some of the
> broken links are salvaged, other links are marked as broken.
> One of the notable broken links is the Dr. Dobbs journal.
> I tried to salvage it and found an archive site at
> https://www.drdobbs.com/, but have not figured out the way to reach
> the "Effective concurrency" series.
> Patches 6/10 to 10/10 are updates and fixes in citation side.
> 
> I'm afraid most commits lack explanations in their change logs.
> If you'd prefer more verbose change logs, I'm willing to respin. 

Given the amount of work you did rechecking all of those bibliography
entries, I cannot bring myself to ask for commit-log changes.
Queued and pushed, thank you very much!

							Thanx, Paul

>         Thanks, Akira
> 
> --
> The following changes since commit 2060b54a52ffaaea818807f7e602a168d46c4d50:
> 
>   advsync: Add LIFO Push and pointer zap (2021-02-23 21:11:55 -0800)
> 
> are available in the Git repository at:
> 
>   https://github.com/akiyks/perfbook.git tags/for-paul-2021.02.27b
> 
> for you to fetch changes up to e51fe38dbbb582f001f8a9b8566e2f388a874898:
> 
>   Update citations to 'Hennessy & Patterson (2021-02-27 09:59:39 +0900)
> 
> ----------------------------------------------------------------
> Akira Yokosawa (10):
>       defer/rcuusage: Add missing preposition
>       datastruct: Use consistent dashtype for performance plot
>       advsync: Move floating code snippet away from section heading
>       treewide: Adjust spacing after full stops
>       bib: url/doi updates
>       Use newer/updated bibliography entries
>       bib/os: Substitute marc.info for marc.theaimsgroup.com
>       bib/RCU: Add url to US patents of www.google.com/patents
>       locking: Replace bibliography entry to avoid duplicates
>       Update citations to 'Hennessy & Patterson
> 
>  .../hash/data/hps.perf.2020.11.26a/README          | 10 ++++
>  .../hash/data/hps.perf.2020.11.26a/perftest.eps    | 12 ++--
>  .../hash/data/hps.perf.2020.11.26a/perftestlin.eps | 11 ++--
>  .../hash/data/hps.perf.2020.11.26a/plots.sh        | 36 ++++++------
>  .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps | 12 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocatall.eps   | 11 ++--
>  .../data/hps.perf.2020.11.26a/zoocatalllin.eps     |  9 +--
>  .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps  | 11 ++--
>  .../data/hps.perf.2020.11.26a/zoocatonlylin.eps    |  7 ++-
>  .../data/hps.perf.2020.11.26a/zoocpu-unsync.eps    | 13 +++--
>  .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps | 10 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpu.eps      | 11 ++--
>  .../data/hps.perf.2020.11.26a/zoocpubktlin.eps     |  5 +-
>  .../data/hps.perf.2020.11.26a/zoocpubktlin8.eps    |  6 +-
>  .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps |  4 +-
>  .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps   |  8 +--
>  .../data/hps.perf.2020.11.26a/zoocpulinqsbr.eps    | 10 ++--
>  .../hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps   | 11 ++--
>  .../hash/data/hps.perf.2020.11.26a/zooupdate.eps   |  5 +-
>  .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps |  5 +-
>  .../data/hps.perf.2020.11.26a/zooupdatelulin.eps   |  5 +-
>  SMPdesign/partexercises.tex                        |  2 +-
>  advsync/advsync.tex                                | 44 +++++++-------
>  appendix/styleguide/styleguide.tex                 |  8 +--
>  appendix/whymb/whymemorybarriers.tex               |  2 +-
>  bib/RCU.bib                                        | 49 +++++++++-------
>  bib/TM.bib                                         | 18 +++---
>  bib/WFS.bib                                        | 13 ++++-
>  bib/hw.bib                                         | 67 +++++++++++++---------
>  bib/maze.bib                                       |  6 +-
>  bib/os.bib                                         | 64 +++++++++++----------
>  bib/perfmeas.bib                                   |  1 +
>  bib/realtime.bib                                   |  8 +--
>  bib/refs.bib                                       |  3 +
>  bib/search.bib                                     |  1 +
>  bib/swtools.bib                                    |  7 ++-
>  bib/syncrefs.bib                                   | 45 ++++++++++-----
>  cpu/cpu.tex                                        |  2 +-
>  cpu/overview.tex                                   |  2 +-
>  defer/rcurelated.tex                               |  4 +-
>  defer/rcuusage.tex                                 |  2 +-
>  defer/whichtochoose.tex                            |  2 +-
>  future/tm.tex                                      |  2 +-
>  howto/howto.tex                                    |  4 +-
>  locking/locking.tex                                |  4 +-
>  memorder/memorder.tex                              |  2 +-
>  owned/owned.tex                                    |  2 +-
>  47 files changed, 329 insertions(+), 247 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-27 19:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-27  1:26 [GIT PULL -perfbook] Bibliography and misc updates Akira Yokosawa
2021-02-27 19:21 ` Paul E. McKenney

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.