All of lore.kernel.org
 help / color / mirror / Atom feed
From: SF Markus Elfring <elfring@users.sourceforge.net>
To: linux-btrfs@vger.kernel.org, Chris Mason <clm@fb.com>,
	David Sterba <dsterba@suse.com>, Josef Bacik <jbacik@fb.com>
Cc: LKML <linux-kernel@vger.kernel.org>, kernel-janitors@vger.kernel.org
Subject: [PATCH 0/4] BTRFS: Adjustments for several function implementations
Date: Sun, 20 Aug 2017 20:16:27 +0000	[thread overview]
Message-ID: <360126ba-e45b-0a8d-57b6-83764c4c2bce@users.sourceforge.net> (raw)

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 20 Aug 2017 22:11:33 +0200

Some update suggestions were taken into account
from static source code analysis.

Markus Elfring (4):
  Delete an error message for a failed memory allocation in btrfsic_process_superblock()
  Adjust 32 checks for null pointers
  Improve eight size determinations
  Delete an unnecessary variable initialisation in tree_mod_log_eb_copy()

 fs/btrfs/check-integrity.c |  4 +---
 fs/btrfs/ctree.c           | 16 +++++++---------
 fs/btrfs/delayed-inode.c   |  4 ++--
 fs/btrfs/extent-tree.c     |  2 +-
 fs/btrfs/extent_io.c       |  2 +-
 fs/btrfs/inode.c           |  4 ++--
 fs/btrfs/lzo.c             |  4 ++--
 fs/btrfs/qgroup.c          |  6 +++---
 fs/btrfs/raid56.c          |  2 +-
 fs/btrfs/reada.c           |  4 ++--
 fs/btrfs/scrub.c           | 12 ++++++------
 fs/btrfs/super.c           |  2 +-
 fs/btrfs/transaction.c     |  2 +-
 fs/btrfs/tree-log.c        |  4 ++--
 fs/btrfs/volumes.c         | 14 +++++++-------
 fs/btrfs/xattr.c           |  2 +-
 fs/btrfs/zlib.c            |  4 ++--
 17 files changed, 42 insertions(+), 46 deletions(-)

-- 
2.14.0


WARNING: multiple messages have this Message-ID (diff)
From: SF Markus Elfring <elfring@users.sourceforge.net>
To: linux-btrfs@vger.kernel.org, Chris Mason <clm@fb.com>,
	David Sterba <dsterba@suse.com>, Josef Bacik <jbacik@fb.com>
Cc: LKML <linux-kernel@vger.kernel.org>, kernel-janitors@vger.kernel.org
Subject: [PATCH 0/4] BTRFS: Adjustments for several function implementations
Date: Sun, 20 Aug 2017 22:16:27 +0200	[thread overview]
Message-ID: <360126ba-e45b-0a8d-57b6-83764c4c2bce@users.sourceforge.net> (raw)

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 20 Aug 2017 22:11:33 +0200

Some update suggestions were taken into account
from static source code analysis.

Markus Elfring (4):
  Delete an error message for a failed memory allocation in btrfsic_process_superblock()
  Adjust 32 checks for null pointers
  Improve eight size determinations
  Delete an unnecessary variable initialisation in tree_mod_log_eb_copy()

 fs/btrfs/check-integrity.c |  4 +---
 fs/btrfs/ctree.c           | 16 +++++++---------
 fs/btrfs/delayed-inode.c   |  4 ++--
 fs/btrfs/extent-tree.c     |  2 +-
 fs/btrfs/extent_io.c       |  2 +-
 fs/btrfs/inode.c           |  4 ++--
 fs/btrfs/lzo.c             |  4 ++--
 fs/btrfs/qgroup.c          |  6 +++---
 fs/btrfs/raid56.c          |  2 +-
 fs/btrfs/reada.c           |  4 ++--
 fs/btrfs/scrub.c           | 12 ++++++------
 fs/btrfs/super.c           |  2 +-
 fs/btrfs/transaction.c     |  2 +-
 fs/btrfs/tree-log.c        |  4 ++--
 fs/btrfs/volumes.c         | 14 +++++++-------
 fs/btrfs/xattr.c           |  2 +-
 fs/btrfs/zlib.c            |  4 ++--
 17 files changed, 42 insertions(+), 46 deletions(-)

-- 
2.14.0


             reply	other threads:[~2017-08-20 20:16 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-20 20:16 SF Markus Elfring [this message]
2017-08-20 20:16 ` [PATCH 0/4] BTRFS: Adjustments for several function implementations SF Markus Elfring
2017-08-20 20:17 ` [PATCH 1/4] btrfs: Delete an error message for a failed memory allocation in btrfsic_process_superbl SF Markus Elfring
2017-08-20 20:17   ` [PATCH 1/4] btrfs: Delete an error message for a failed memory allocation in btrfsic_process_superblock() SF Markus Elfring
2017-08-20 20:18 ` [PATCH 2/4] btrfs: Adjust 32 checks for null pointers SF Markus Elfring
2017-08-20 20:18   ` SF Markus Elfring
2017-08-21 10:43   ` Timofey Titovets
2017-08-21 10:43     ` Timofey Titovets
2017-08-21 13:27     ` SF Markus Elfring
2017-08-21 13:27       ` SF Markus Elfring
2017-08-21 14:23       ` Timofey Titovets
2017-08-21 14:23         ` Timofey Titovets
2017-08-20 20:19 ` [PATCH 3/4] btrfs: Improve eight size determinations SF Markus Elfring
2017-08-20 20:19   ` SF Markus Elfring
2017-08-21  9:20   ` Timofey Titovets
2017-08-21  9:20     ` Timofey Titovets
2017-08-20 20:20 ` [PATCH 4/4] btrfs: Delete an unnecessary variable initialisation in tree_mod_log_eb_copy() SF Markus Elfring
2017-08-20 20:20   ` SF Markus Elfring
2017-08-21 10:50   ` Timofey Titovets
2017-08-21 10:50     ` Timofey Titovets
2017-08-21 13:30     ` SF Markus Elfring
2017-08-21 13:30       ` SF Markus Elfring

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=360126ba-e45b-0a8d-57b6-83764c4c2bce@users.sourceforge.net \
    --to=elfring@users.sourceforge.net \
    --cc=clm@fb.com \
    --cc=dsterba@suse.com \
    --cc=jbacik@fb.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.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.