firefly-linux-kernel-4.4.55.git
10 years agoMerge branch 'bcache-for-3.15' of git://evilpiepirate.org/~kent/linux-bcache into...
Jens Axboe [Tue, 18 Mar 2014 19:57:01 +0000 (13:57 -0600)]
Merge branch 'bcache-for-3.15' of git://evilpiepirate.org/~kent/linux-bcache into for-3.15/drivers

Kent writes:

Jens, here's the bcache changes for 3.15. Lots of bugfixes, and some
refactoring and cleanups.

10 years agobcache: remove nested function usage
John Sheu [Tue, 18 Mar 2014 06:13:56 +0000 (23:13 -0700)]
bcache: remove nested function usage

Uninlined nested functions can cause crashes when using ftrace, as they don't
follow the normal calling convention and confuse the ftrace function graph
tracer as it examines the stack.

Also, nested functions are supported as a gcc extension, but may fail on other
compilers (e.g. llvm).

Signed-off-by: John Sheu <john.sheu@gmail.com>
10 years agobcache: Kill bucket->gc_gen
Kent Overstreet [Fri, 28 Feb 2014 01:51:12 +0000 (17:51 -0800)]
bcache: Kill bucket->gc_gen

gc_gen was a temporary used to recalculate last_gc, but since we only need
bucket->last_gc when gc isn't running (gc_mark_valid = 1), we can just update
last_gc directly.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Kill unused freelist
Kent Overstreet [Mon, 17 Mar 2014 23:55:55 +0000 (16:55 -0700)]
bcache: Kill unused freelist

This was originally added as at optimization that for various reasons isn't
needed anymore, but it does add a lot of nasty corner cases (and it was
responsible for some recently fixed bugs). Just get rid of it now.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Rework btree cache reserve handling
Kent Overstreet [Tue, 18 Mar 2014 00:15:53 +0000 (17:15 -0700)]
bcache: Rework btree cache reserve handling

This changes the bucket allocation reserves to use _real_ reserves - separate
freelists - instead of watermarks, which if nothing else makes the current code
saner to reason about and is going to be important in the future when we add
support for multiple btrees.

It also adds btree_check_reserve(), which checks (and locks) the reserves for
both bucket allocation and memory allocation for btree nodes; the old code just
kinda sorta assumed that since (e.g. for btree node splits) it had the root
locked and that meant no other threads could try to make use of the same
reserve; this technically should have been ok for memory allocation (we should
always have a reserve for memory allocation (the btree node cache is used as a
reserve and we preallocate it)), but multiple btrees will mean that locking the
root won't be sufficient anymore, and for the bucket allocation reserve it was
technically possible for the old code to deadlock.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Kill btree_io_wq
Kent Overstreet [Thu, 23 Jan 2014 09:44:55 +0000 (01:44 -0800)]
bcache: Kill btree_io_wq

With the locking rework in the last patch, this shouldn't be needed anymore -
btree_node_write_work() only takes b->write_lock which is never held for very
long.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: btree locking rework
Kent Overstreet [Wed, 5 Mar 2014 00:42:42 +0000 (16:42 -0800)]
bcache: btree locking rework

Add a new lock, b->write_lock, which is required to actually modify - or write -
a btree node; this lock is only held for short durations.

This means we can write out a btree node without taking b->lock, which _is_ held
for long durations - solving a deadlock when btree_flush_write() (from the
journalling code) is called with a btree node locked.

Right now just occurs in bch_btree_set_root(), but with an upcoming journalling
rework is going to happen a lot more.

This also turns b->lock is now more of a read/intent lock instead of a
read/write lock - but not completely, since it still blocks readers. May turn it
into a real intent lock at some point in the future.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix a race when freeing btree nodes
Kent Overstreet [Tue, 18 Mar 2014 01:22:34 +0000 (18:22 -0700)]
bcache: Fix a race when freeing btree nodes

This isn't a bulletproof fix; btree_node_free() -> bch_bucket_free() puts the
bucket on the unused freelist, where it can be reused right away without any
ordering requirements. It would be better to wait on at least a journal write to
go down before reusing the bucket. bch_btree_set_root() does this, and inserting
into non leaf nodes is completely synchronous so we should be ok, but future
patches are just going to get rid of the unused freelist - it was needed in the
past for various reasons but shouldn't be anymore.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Add a real GC_MARK_RECLAIMABLE
Kent Overstreet [Thu, 13 Mar 2014 20:46:29 +0000 (13:46 -0700)]
bcache: Add a real GC_MARK_RECLAIMABLE

This means the garbage collection code can better check for data and metadata
pointers to the same buckets.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Add bch_keylist_init_single()
Kent Overstreet [Thu, 9 Jan 2014 05:22:02 +0000 (21:22 -0800)]
bcache: Add bch_keylist_init_single()

This will potentially save us an allocation when we've got inode/dirent bkeys
that don't fit in the keylist's inline keys.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Improve priority_stats
Kent Overstreet [Wed, 26 Feb 2014 01:34:21 +0000 (17:34 -0800)]
bcache: Improve priority_stats

Break down data into clean data/dirty data/metadata.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Better alloc tracepoints
Kent Overstreet [Thu, 13 Feb 2014 02:43:32 +0000 (18:43 -0800)]
bcache: Better alloc tracepoints

Change the invalidate tracepoint to indicate how much data we're invalidating,
and change the alloc tracepoints to indicate what offset they're for.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Kill dead cgroup code
Kent Overstreet [Thu, 23 Jan 2014 12:42:58 +0000 (04:42 -0800)]
bcache: Kill dead cgroup code

This hasn't been used or even enabled in ages.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: stop moving_gc marking buckets that can't be moved.
Nicholas Swenson [Thu, 23 Jan 2014 23:21:02 +0000 (15:21 -0800)]
bcache: stop moving_gc marking buckets that can't be moved.

Signed-off-by: Nicholas Swenson <nks@daterainc.com>
10 years agobcache: Fix moving_pred()
Kent Overstreet [Mon, 17 Feb 2014 23:48:36 +0000 (15:48 -0800)]
bcache: Fix moving_pred()

Avoid a potential null pointer deref (e.g. from check keys for cache misses)

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix moving_gc deadlocking with a foreground write
Nicholas Swenson [Fri, 10 Jan 2014 00:03:04 +0000 (16:03 -0800)]
bcache: Fix moving_gc deadlocking with a foreground write

Deadlock happened because a foreground write slept, waiting for a bucket
to be allocated. Normally the gc would mark buckets available for invalidation.
But the moving_gc was stuck waiting for outstanding writes to complete.
These writes used the bcache_wq, the same queue foreground writes used.

This fix gives moving_gc its own work queue, so it was still finish moving
even if foreground writes are stuck waiting for allocation. It also makes
work queue a parameter to the data_insert path, so moving_gc can use its
workqueue for writes.

Signed-off-by: Nicholas Swenson <nks@daterainc.com>
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix discard granularity
Kent Overstreet [Tue, 11 Feb 2014 01:26:40 +0000 (17:26 -0800)]
bcache: Fix discard granularity

blk_stack_limits() doesn't like a discard granularity of 0.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix another bug recovering from unclean shutdown
Kent Overstreet [Mon, 17 Mar 2014 22:13:26 +0000 (15:13 -0700)]
bcache: Fix another bug recovering from unclean shutdown

The on disk bucket gens are allowed to be out of date, when we reuse buckets
that didn't have any live data in them. To deal with this, the initial gc has to
update the bucket gen when we find a pointer gen newer than the bucket's gen.

Unfortunately we weren't doing this for pointers in the journal that we're about
to replay.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix a bug recovering from unclean shutdown
Kent Overstreet [Wed, 5 Mar 2014 01:56:24 +0000 (17:56 -0800)]
bcache: Fix a bug recovering from unclean shutdown

The code to fixup incorrect bucket prios incorrectly did not skip btree node
freeing keys

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix a journalling reclaim after recovery bug
Kent Overstreet [Thu, 13 Mar 2014 20:44:21 +0000 (13:44 -0700)]
bcache: Fix a journalling reclaim after recovery bug

On recovery we weren't correctly keeping track of what journal buckets had open
journal entries, thus it was possible for them to be overwritten until we'd
written all new journal entries.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix a null ptr deref in journal replay
Kent Overstreet [Tue, 25 Feb 2014 03:55:28 +0000 (19:55 -0800)]
bcache: Fix a null ptr deref in journal replay

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix a lockdep splat in an error path
Kent Overstreet [Tue, 18 Mar 2014 01:58:55 +0000 (18:58 -0700)]
bcache: Fix a lockdep splat in an error path

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agomtip32xx: mtip_async_complete() bug fixes
Sam Bradshaw [Thu, 13 Mar 2014 21:33:30 +0000 (14:33 -0700)]
mtip32xx: mtip_async_complete() bug fixes

This patch fixes 2 issues in the fast completion path:
1) Possible double completions / double dma_unmap_sg() calls due to lack
of atomicity in the check and subsequent dereference of the upper layer
callback function. Fixed with cmpxchg before unmap and callback.
2) Regression in unaligned IO constraining workaround for p420m devices.
Fixed by checking if IO is unaligned and using proper semaphore if so.

Signed-off-by: Sam Bradshaw <sbradshaw@micron.com>
Cc: stable@kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agomtip32xx: Unmap the DMA segments before completing the IO request
Felipe Franciosi [Thu, 13 Mar 2014 14:34:21 +0000 (14:34 +0000)]
mtip32xx: Unmap the DMA segments before completing the IO request

If the buffers are unmapped after completing a request, then stale data
might be in the request.

Signed-off-by: Felipe Franciosi <felipe@paradoxo.org>
Cc: stable@kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agomtip32xx: Set queue bounce limit
Felipe Franciosi [Thu, 13 Mar 2014 14:34:20 +0000 (14:34 +0000)]
mtip32xx: Set queue bounce limit

We need to set the queue bounce limit during the device initialization to
prevent excessive bouncing on 32 bit architectures.

Signed-off-by: Felipe Franciosi <felipe@paradoxo.org>
Cc: stable@kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agonvme: Use pci_enable_msi_range() and pci_enable_msix_range()
Alexander Gordeev [Tue, 4 Mar 2014 15:22:00 +0000 (16:22 +0100)]
nvme: Use pci_enable_msi_range() and pci_enable_msix_range()

As result of deprecation of MSI-X/MSI enablement functions
pci_enable_msix() and pci_enable_msi_block() all drivers
using these two interfaces need to be updated to use the
new pci_enable_msi_range()  or pci_enable_msi_exact()
and pci_enable_msix_range() or pci_enable_msix_exact()
interfaces.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Keith Busch <keith.busch@intel.com>
Cc: Matthew Wilcox <willy@linux.intel.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: linux-nvme@lists.infradead.org
Cc: linux-pci@vger.kernel.org
Reviewed-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agocciss: Fallback to MSI rather than to INTx if MSI-X failed
Alexander Gordeev [Wed, 26 Feb 2014 09:02:41 +0000 (10:02 +0100)]
cciss: Fallback to MSI rather than to INTx if MSI-X failed

Currently the driver falls back to INTx mode when MSI-X
initialization failed. This is a suboptimal behaviour
for chips that also support MSI. This update changes that
behaviour and falls back to MSI mode in case MSI-X mode
initialization failed.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Mike Miller <mike.miller@hp.com>
Cc: iss_storagedev@hp.com
Cc: Jens Axboe <axboe@kernel.dk>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoswim3: fix interruptible_sleep_on race
Arnd Bergmann [Wed, 26 Feb 2014 11:01:44 +0000 (12:01 +0100)]
swim3: fix interruptible_sleep_on race

interruptible_sleep_on is racy and going away. This replaces the one
caller in the swim3 driver with the equivalent race-free
wait_event_interruptible call. Since we're here already, this
also fixes the case where we get interrupted from atomic context,
which used to just spin in the loop.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoataflop: fix sleep_on races
Arnd Bergmann [Wed, 26 Feb 2014 11:01:41 +0000 (12:01 +0100)]
ataflop: fix sleep_on races

sleep_on() is inherently racy, and has been deprecated for a long time.
This fixes two instances in the atari floppy driver:

* fdc_wait/fdc_busy becomes an open-coded mutex. We cannot use the
  regular mutex since it gets released in interrupt context. The
  open-coded version using wait_event() and cmpxchg() is equivalent
  to the existing code but does the checks atomically, and we can
  now safely check the condition with irqs enabled.

* format_wait becomes a completion, which is the natural structure
  here. The format ioctl waits for the background task to either
  complete or abort.

This does not attempt to fix the preexisting bug of calling schedule
with local interrupts disabled.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitz@biophys.uni-duesseldorf.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoDAC960: remove sleep_on usage
Arnd Bergmann [Wed, 26 Feb 2014 11:01:43 +0000 (12:01 +0100)]
DAC960: remove sleep_on usage

sleep_on and its variants are going away. The use of sleep_on() in
DAC960_V2_ExecuteUserCommand seems to be bogus because the command
by the time we get there, the command has completed already and
we just enter the timeout. Based on this interpretation, I concluded
that we can replace it with a simple msleep(1000) and rearrange the
code around it slightly.

The interruptible_sleep_on_timeout in DAC960_gam_ioctl seems equivalent
to the race-free version using wait_event_interruptible_timeout.
I left the driver to return -EINTR rather than -ERESTARTSYS to preserve
the timeout behavior.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agomtip32xx: Use pci_enable_msi() instead of pci_enable_msi_range()
Alexander Gordeev [Tue, 25 Feb 2014 21:33:18 +0000 (22:33 +0100)]
mtip32xx: Use pci_enable_msi() instead of pci_enable_msi_range()

Commit "mtip32xx: Use pci_enable_msix_range() instead of
pci_enable_msix()" was unnecessary, since pci_enable_msi()
function is not deprecated and is still preferable for
enabling the single MSI mode. This update reverts usage of
pci_enable_msi() function.

Besides, the changelog for that commit was bogus, since
mtip32xx driver uses MSI interrupt, not MSI-X.

Cc: Jens Axboe <axboe@kernel.dk>
Cc: Asai Thambi S P <asamymuthupa@micron.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agobcache: Fix a shutdown bug
Kent Overstreet [Thu, 20 Feb 2014 03:48:26 +0000 (19:48 -0800)]
bcache: Fix a shutdown bug

Shutdown wasn't cancelling/waiting on journal_write_work()

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agobcache: Fix flash_dev_cache_miss() for real this time
Kent Overstreet [Thu, 16 Jan 2014 23:04:18 +0000 (15:04 -0800)]
bcache: Fix flash_dev_cache_miss() for real this time

The code was using sectors to count the number of sectors it was zeroing... but
then it passed it to bio_advance()... after it had been set to 0. Amusing...

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
10 years agoskd: Use pci_enable_msix_range() instead of pci_enable_msix()
Alexander Gordeev [Wed, 19 Feb 2014 08:58:21 +0000 (09:58 +0100)]
skd: Use pci_enable_msix_range() instead of pci_enable_msix()

As result of deprecation of MSI-X/MSI enablement functions
pci_enable_msix() and pci_enable_msi_block() all drivers
using these two interfaces need to be updated to use the
new pci_enable_msi_range() and pci_enable_msix_range()
interfaces.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoskd: Use unified access to skdev->msix_entries throughout the code
Alexander Gordeev [Wed, 19 Feb 2014 08:58:20 +0000 (09:58 +0100)]
skd: Use unified access to skdev->msix_entries throughout the code

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoskd: Fix incomplete cleanup of MSI-X interrupt
Alexander Gordeev [Wed, 19 Feb 2014 08:58:19 +0000 (09:58 +0100)]
skd: Fix incomplete cleanup of MSI-X interrupt

When enabling MSI-X interrupts fails due to lack of memory
the call to pci_disable_msix() is missed and the device is
left with MSI-X interrupts enabled while the driver assumes
otherwise. This update fixes the described misbehaviour and
cleans up the code of skd_release_msix() function.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agoskd: Fix out of array boundary access
Alexander Gordeev [Wed, 19 Feb 2014 08:58:18 +0000 (09:58 +0100)]
skd: Fix out of array boundary access

When enabling MSI-X, interrupts are requested for SKD_MAX_MSIX_COUNT
entries in skdev->msix_entries array, while the number of actually
allocated entries is skdev->msix_count. This might lead to an out of
boundary access in case number of allocated entries is less than
SKD_MAX_MSIX_COUNT. This update fixes the described misbehaviour.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agomtip32xx: Use pci_enable_msix_range() instead of pci_enable_msix()
Alexander Gordeev [Wed, 19 Feb 2014 08:58:16 +0000 (09:58 +0100)]
mtip32xx: Use pci_enable_msix_range() instead of pci_enable_msix()

As result of deprecation of MSI-X/MSI enablement functions
pci_enable_msix() and pci_enable_msi_block() all drivers
using these two interfaces need to be updated to use the
new pci_enable_msi_range() and pci_enable_msix_range()
interfaces.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Asai Thambi S P <asamymuthupa@micron.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agomtip32xx: Remove superfluous call to pci_disable_msi()
Alexander Gordeev [Wed, 19 Feb 2014 08:58:15 +0000 (09:58 +0100)]
mtip32xx: Remove superfluous call to pci_disable_msi()

There is no need to call pci_disable_msi() in case
the previous call to pci_enable_msi() failed

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Asai Thambi S P <asamymuthupa@micron.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agodrbd: Fix future possible NULL pointer dereference
Andreas Gruenbacher [Wed, 19 Feb 2014 09:49:07 +0000 (10:49 +0100)]
drbd: Fix future possible NULL pointer dereference

Right now every resource has exactly one connection. But we are preparing
for dynamic connections. I.e. in the future thre can be resources without
connections.

However smatch points this out as 'variable dereferenced before check',
which is correct.

This issue was introduced in
drbd: get_one_status(): Iterate over resource->devices instead of connection->peer_devices

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
10 years agobcache: Fix another compiler warning on m68k
Kent Overstreet [Mon, 17 Feb 2014 21:44:06 +0000 (13:44 -0800)]
bcache: Fix another compiler warning on m68k

Use a bigger hammer this time

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Cc: linux-stable <stable@vger.kernel.org>
10 years agodrbd: Add drbd_thread->resource and make drbd_thread->connection optional
Andreas Gruenbacher [Thu, 21 Jul 2011 11:45:21 +0000 (13:45 +0200)]
drbd: Add drbd_thread->resource and make drbd_thread->connection optional

In the drbd_thread "infrastructure" functions, only use the resource instead of
the connection.  Make the connection field of drbd_thread optional.  This will
allow to introduce threads which are not associated with a connection.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Use the right peer device
Andreas Gruenbacher [Tue, 13 Sep 2011 08:39:41 +0000 (10:39 +0200)]
drbd: Use the right peer device

in w_e_ (peer request) callbacks and in peer request I/O completion handlers

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Remove unused parameter of wire_flags_to_bio()
Andreas Gruenbacher [Tue, 30 Aug 2011 14:22:33 +0000 (16:22 +0200)]
drbd: Remove unused parameter of wire_flags_to_bio()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Get rid of first_peer_device() in handle_write_conflicts()
Andreas Gruenbacher [Tue, 30 Aug 2011 13:38:04 +0000 (15:38 +0200)]
drbd: Get rid of first_peer_device() in handle_write_conflicts()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: In the worker thread, process drbd_work instead of drbd_device_work items
Andreas Gruenbacher [Fri, 26 Aug 2011 21:50:08 +0000 (23:50 +0200)]
drbd: In the worker thread, process drbd_work instead of drbd_device_work items

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Turn w_make_ov_request and make_resync_request into "normal" functions
Andreas Gruenbacher [Thu, 25 Aug 2011 14:59:58 +0000 (16:59 +0200)]
drbd: Turn w_make_ov_request and make_resync_request into "normal" functions

These functions are not used as drbd_work callbacks.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Make w_make_resync_request() static
Andreas Gruenbacher [Thu, 25 Aug 2011 14:56:34 +0000 (16:56 +0200)]
drbd: Make w_make_resync_request() static

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: struct drbd_peer_request: Use drbd_work instead of drbd_device_work
Andreas Gruenbacher [Thu, 25 Aug 2011 13:49:40 +0000 (15:49 +0200)]
drbd: struct drbd_peer_request: Use drbd_work instead of drbd_device_work

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: struct after_conn_state_chg_work: Use drbd_work instead of drbd_device_work
Andreas Gruenbacher [Thu, 25 Aug 2011 13:14:48 +0000 (15:14 +0200)]
drbd: struct after_conn_state_chg_work: Use drbd_work instead of drbd_device_work

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Turn conn_flush_workqueue() into drbd_flush_workqueue()
Andreas Gruenbacher [Thu, 28 Jul 2011 13:56:02 +0000 (15:56 +0200)]
drbd: Turn conn_flush_workqueue() into drbd_flush_workqueue()

The new function can flush any work queue, not just the work queue of the data
socket of a connection.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Create a dedicated struct drbd_device_work
Andreas Gruenbacher [Thu, 28 Jul 2011 13:27:51 +0000 (15:27 +0200)]
drbd: Create a dedicated struct drbd_device_work

drbd_device_work is a work item that has a reference to a device,
while drbd_work is a more generic work item that does not carry
a reference to a device.

All callbacks get a pointer to a drbd_work instance, those callbacks
that expect a drbd_device_work use the container_of macro to get it.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename w_prev_work_done -> w_complete
Andreas Gruenbacher [Mon, 25 Jul 2011 11:51:18 +0000 (13:51 +0200)]
drbd: Rename w_prev_work_done -> w_complete

Also move it to drbd_receiver.c and make it static.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Move string function prototypes from linux/drbd.h to drbd_string.h
Andreas Gruenbacher [Thu, 1 Sep 2011 11:18:31 +0000 (13:18 +0200)]
drbd: Move string function prototypes from linux/drbd.h to drbd_string.h

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Remove useless assertion
Andreas Gruenbacher [Wed, 24 Aug 2011 06:19:41 +0000 (08:19 +0200)]
drbd: Remove useless assertion

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Kill drbd_task_to_thread_name()
Andreas Gruenbacher [Wed, 10 Aug 2011 13:05:02 +0000 (15:05 +0200)]
drbd: Kill drbd_task_to_thread_name()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Pass a peer device to a number of fuctions
Andreas Gruenbacher [Mon, 8 Aug 2011 22:47:13 +0000 (00:47 +0200)]
drbd: Pass a peer device to a number of fuctions

These functions actually operate on a peer device, or
need a peer device.

drbd_prepare_command(), drbd_send_command(), drbd_send_sync_param()
drbd_send_uuids(), drbd_gen_and_send_sync_uuid(), drbd_send_sizes()
drbd_send_state(), drbd_send_current_state(), and drbd_send_state_req()
drbd_send_sr_reply(), drbd_send_ack(), drbd_send_drequest(),
drbd_send_drequest_csum(), drbd_send_ov_request(), drbd_send_dblock()
drbd_send_block(), drbd_send_out_of_sync(), recv_dless_read()
drbd_drain_block(), receive_bitmap_plain(), recv_resync_read()
read_in_block(), read_for_csum(), drbd_alloc_pages(), drbd_alloc_peer_req()
need_peer_seq(), update_peer_seq(), wait_for_and_update_peer_seq()
drbd_sync_handshake(), drbd_asb_recover_{0,1,2}p(), drbd_connected()
drbd_disconnected(), decode_bitmap_c() and recv_bm_rle_bits()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Replace vnr_to_mdev() with conn_peer_device()
Andreas Gruenbacher [Tue, 9 Aug 2011 01:54:55 +0000 (03:54 +0200)]
drbd: Replace vnr_to_mdev() with conn_peer_device()

The new function returns a peer device, which allows us to eliminate a few
instances of first_peer_device().

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: drbd_csum_bio(), drbd_csum_ee(): Remove unused device argument
Andreas Gruenbacher [Tue, 9 Aug 2011 00:49:01 +0000 (02:49 +0200)]
drbd: drbd_csum_bio(), drbd_csum_ee(): Remove unused device argument

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Function prototype cleanups
Andreas Gruenbacher [Fri, 22 Jul 2011 09:14:41 +0000 (11:14 +0200)]
drbd: Function prototype cleanups

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename drbdd_init() -> drbd_receiver()
Andreas Gruenbacher [Fri, 22 Jul 2011 09:04:36 +0000 (11:04 +0200)]
drbd: Rename drbdd_init() -> drbd_receiver()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Move cpu_mask from connection to resource
Andreas Gruenbacher [Fri, 22 Jul 2011 12:29:02 +0000 (14:29 +0200)]
drbd: Move cpu_mask from connection to resource

Also fix drbd_calc_cpu_mask() to spread resources equally over all online cpus
independent of device minor numbers.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Define the size of res_opts->cpu_mask in a single place
Andreas Gruenbacher [Fri, 22 Jul 2011 11:53:19 +0000 (13:53 +0200)]
drbd: Define the size of res_opts->cpu_mask in a single place

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Move susp, susp_nod, susp_fen from connection to resource
Andreas Gruenbacher [Thu, 7 Jul 2011 23:19:44 +0000 (01:19 +0200)]
drbd: Move susp, susp_nod, susp_fen from connection to resource

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Move conf_mutex from connection to resource
Andreas Gruenbacher [Thu, 7 Jul 2011 12:19:42 +0000 (14:19 +0200)]
drbd: Move conf_mutex from connection to resource

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: drbd_adm_prepare(): Only set adm_ctx.connection when a connection is requested
Andreas Gruenbacher [Wed, 6 Jul 2011 13:05:58 +0000 (15:05 +0200)]
drbd: drbd_adm_prepare(): Only set adm_ctx.connection when a connection is requested

Also change drbd_adm_connect() to expect a resource after it requested one.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Iterate over all connections
Andreas Gruenbacher [Wed, 6 Jul 2011 13:03:31 +0000 (15:03 +0200)]
drbd: Iterate over all connections

in drbd_adm_down(), drbd_create_device() and drbd_set_role()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename net_conf variables old_conf -> old_net_conf and new_conf -> new_net_conf
Andreas Gruenbacher [Wed, 6 Jul 2011 12:42:39 +0000 (14:42 +0200)]
drbd: Rename net_conf variables old_conf -> old_net_conf and new_conf -> new_net_conf

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: drbd_create_device(): Take a resource instead of a connection argument
Andreas Gruenbacher [Wed, 6 Jul 2011 12:20:49 +0000 (14:20 +0200)]
drbd: drbd_create_device(): Take a resource instead of a connection argument

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: drbd_adm_new_resource(): Check if resource exists, not if it has any connections
Andreas Gruenbacher [Tue, 5 Jul 2011 16:26:00 +0000 (18:26 +0200)]
drbd: drbd_adm_new_resource(): Check if resource exists, not if it has any connections

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: get_one_status(): Iterate over resource->devices instead of connection->peer_de...
Andreas Gruenbacher [Tue, 5 Jul 2011 16:23:07 +0000 (18:23 +0200)]
drbd: get_one_status(): Iterate over resource->devices instead of connection->peer_devices

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename drbd_{create,delete}_minor -> drbd_{create,delete}_device
Andreas Gruenbacher [Sun, 3 Jul 2011 21:32:26 +0000 (23:32 +0200)]
drbd: Rename drbd_{create,delete}_minor -> drbd_{create,delete}_device

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Add explicit device parameter to D_ASSERT
Andreas Gruenbacher [Mon, 27 Jun 2011 14:23:33 +0000 (16:23 +0200)]
drbd: Add explicit device parameter to D_ASSERT

The implicit dependency on a variable inside the macro is problematic.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Replace and remove the obsolete conn_() macros
Andreas Gruenbacher [Wed, 6 Jul 2011 09:01:44 +0000 (11:01 +0200)]
drbd: Replace and remove the obsolete conn_() macros

With the polymorphic drbd_() macros, we no longer need the connection
specific variants.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Turn drbd_printk() into a polymorphic macro
Andreas Gruenbacher [Wed, 6 Jul 2011 08:57:39 +0000 (10:57 +0200)]
drbd: Turn drbd_printk() into a polymorphic macro

This allows drbd_alert(), drbd_err(), drbd_warn(), and drbd_info() to work for
a resource, device, or connection so that we don't have to introduce three
separate sets of macros for that.

The drbd_printk() macro itself is pretty ugly, but that problem is limited to
one place in the code.  Using drbd_printk() on an object type which it doesn't
understand results in an undefined drbd_printk_with_wrong_object_type symbol.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Remove the terrible DEV hack
Andreas Gruenbacher [Sun, 3 Jul 2011 15:53:52 +0000 (17:53 +0200)]
drbd: Remove the terrible DEV hack

DRBD was using dev_err() and similar all over the code; instead of having to
write dev_err(disk_to_dev(device->vdisk), ...) to convert a drbd_device into a
kernel device, a DEV macro was used which implicitly references the device
variable.  This is terrible; introduce separate drbd_err() and similar macros
with an explicit device parameter instead.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Turn connection->volumes into connection->peer_devices
Andreas Gruenbacher [Tue, 21 Jun 2011 15:23:59 +0000 (17:23 +0200)]
drbd: Turn connection->volumes into connection->peer_devices

Let connection->peer_devices point to peer devices; connection->volumes was
pointing to devices.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Move resource options from connection to resource
Andreas Gruenbacher [Tue, 21 Jun 2011 14:11:28 +0000 (16:11 +0200)]
drbd: Move resource options from connection to resource

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: conn_try_disconnect(): Use parameter instead of the global variable
Andreas Gruenbacher [Tue, 21 Jun 2011 11:58:18 +0000 (13:58 +0200)]
drbd: conn_try_disconnect(): Use parameter instead of the global variable

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Replace conn_get_by_name() with drbd_find_resource()
Andreas Gruenbacher [Mon, 13 Jun 2011 12:27:45 +0000 (14:27 +0200)]
drbd: Replace conn_get_by_name() with drbd_find_resource()

So far, connections and resources always come in pairs, but in the future with
multiple connections per resource, the names will stick with the resources.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Add struct drbd_resource->devices
Andreas Gruenbacher [Wed, 8 Jun 2011 23:40:48 +0000 (01:40 +0200)]
drbd: Add struct drbd_resource->devices

This allows to access the volumes of a resource by number.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Minor cleanup in conn_new_minor()
Andreas Gruenbacher [Thu, 23 May 2013 12:57:17 +0000 (14:57 +0200)]
drbd: Minor cleanup in conn_new_minor()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Add struct drbd_device->resource
Andreas Gruenbacher [Wed, 8 Jun 2011 23:38:00 +0000 (01:38 +0200)]
drbd: Add struct drbd_device->resource

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: drbd_adm_down(): Move valid resource name check to drbd_adm_prepare()
Andreas Gruenbacher [Wed, 8 Jun 2011 23:26:16 +0000 (01:26 +0200)]
drbd: drbd_adm_down(): Move valid resource name check to drbd_adm_prepare()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Add struct drbd_resource
Andreas Gruenbacher [Wed, 8 Jun 2011 20:17:38 +0000 (22:17 +0200)]
drbd: Add struct drbd_resource

In a first step, each resource has exactly one connection, and both objects are
allocated at the same time.  The final result will be one resource and zero or
more connections.

Only allow to delete a resource if all its connections are C_STANDALONE.
Stop the worker threads of all connections early enough.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Improve some function and variable naming
Andreas Gruenbacher [Tue, 7 Jun 2011 20:54:17 +0000 (22:54 +0200)]
drbd: Improve some function and variable naming

Rename functions
conn_destroy() -> drbd_destroy_connection(),
drbd_minor_destroy() -> drbd_destroy_device()
drbd_adm_add_minor() -> drbd_adm_add_minor()
drbd_adm_delete_minor() -> drbd_adm_del_minor()

Rename global variable minors to drbd_devices

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Introduce "peer_device" object between "device" and "connection"
Andreas Gruenbacher [Tue, 31 May 2011 12:33:49 +0000 (14:33 +0200)]
drbd: Introduce "peer_device" object between "device" and "connection"

In a setup where a device (aka volume) can replicate to multiple peers and one
connection can be shared between multiple devices, we need separate objects to
represent devices on peer nodes and network connections.

As a first step to introduce multiple connections per device, give each
drbd_device object a single drbd_peer_device object which connects it to a
drbd_connection object.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename drbd_tconn -> drbd_connection
Andreas Gruenbacher [Mon, 30 May 2011 14:32:41 +0000 (16:32 +0200)]
drbd: Rename drbd_tconn -> drbd_connection

sed -i -e 's:all_tconn:connections:g' -e 's:tconn:connection:g'

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename "mdev" to "device"
Andreas Gruenbacher [Sun, 3 Jul 2011 11:26:43 +0000 (13:26 +0200)]
drbd: Rename "mdev" to "device"

sed -i -e 's:mdev:device:g'

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Rename struct drbd_conf -> struct drbd_device
Andreas Gruenbacher [Mon, 30 May 2011 14:15:21 +0000 (16:15 +0200)]
drbd: Rename struct drbd_conf -> struct drbd_device

sed -i -e 's:\<drbd_conf\>:drbd_device:g'

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Split off on-the-wire protocol definitions
Andreas Gruenbacher [Mon, 30 May 2011 09:47:37 +0000 (11:47 +0200)]
drbd: Split off on-the-wire protocol definitions

Keep the protocol definitions separate from the kernel code; they are useful in
their own right.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Describe the future high-level structure of DRBD
Andreas Gruenbacher [Fri, 10 Jun 2011 15:02:53 +0000 (17:02 +0200)]
drbd: Describe the future high-level structure of DRBD

The following commits will successively transform DRBD into the structure
described here.

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agoidr: Add new function idr_is_empty()
Andreas Gruenbacher [Mon, 8 Aug 2011 21:36:56 +0000 (23:36 +0200)]
idr: Add new function idr_is_empty()

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrbd: Add missing error goto
Philipp Reisner [Thu, 1 Aug 2013 08:21:47 +0000 (10:21 +0200)]
drbd: Add missing error goto

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
10 years agodrivers: block: Remove unused function drbd_bm_write_lazy() in drbd_bitmap.c
Rashika Kheria [Thu, 19 Dec 2013 09:33:36 +0000 (15:03 +0530)]
drivers: block: Remove unused function drbd_bm_write_lazy() in drbd_bitmap.c

Remove unused function drbd_bm_write_lazy() in drbd/drbd_bitmap.c.

This eliminates the following warning in drbd/drbd_bitmap.c:
drivers/block/drbd/drbd_bitmap.c:1208:5: warning: no previous prototype for ‘drbd_bm_write_lazy’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrivers: block: Mark function seq_printf_with_thousands_grouping() as static in drbd_...
Rashika Kheria [Thu, 19 Dec 2013 09:34:47 +0000 (15:04 +0530)]
drivers: block: Mark function seq_printf_with_thousands_grouping() as static in drbd_proc.c

Mark function seq_printf_with_thousands_grouping() as static in
drbd/drbd_proc.c because it is not used outside this file.

This eliminates the following warning in drbd/drbd_proc.c:
drivers/block/drbd/drbd_proc.c:49:6: warning: no previous prototype for ‘seq_printf_with_thousands_grouping’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrivers: block: Mark the function as static in drbd_worker.c
Rashika Kheria [Thu, 19 Dec 2013 09:36:10 +0000 (15:06 +0530)]
drivers: block: Mark the function as static in drbd_worker.c

Mark functions drbd_endio_read_sec_final(), drbd_send_barrier(),
need_to_send_barrier(), dequeue_work_batch(), dequeue_work_item() and
wait_for_work() as static in drbd/drbd_worker.c because they are not
used outside this file.

This eliminates the following warnings in drbd/drbd_worker.c:
drivers/block/drbd/drbd_worker.c:99:6: warning: no previous prototype for ‘drbd_endio_read_sec_final’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_worker.c:1276:5: warning: no previous prototype for ‘drbd_send_barrier’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_worker.c:1774:6: warning: no previous prototype for ‘need_to_send_barrier’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_worker.c:1798:6: warning: no previous prototype for ‘dequeue_work_batch’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_worker.c:1806:6: warning: no previous prototype for ‘dequeue_work_item’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_worker.c:1815:6: warning: no previous prototype for ‘wait_for_work’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrivers: block: Move prototype declaration to appropriate header file from drbd_main.c
Rashika Kheria [Thu, 19 Dec 2013 09:37:47 +0000 (15:07 +0530)]
drivers: block: Move prototype declaration to appropriate header file from drbd_main.c

Move prototype declaration of functions drbdd_init() and drbd_asender()
from drbd/drbd_main.c to header file drbd/drbd_int.h because these
functions are used by more than one file.

This eliminates the following warning in drbd/drbd_receiver.c:
drivers/block/drbd/drbd_receiver.c:4836:5: warning: no previous prototype for ‘drbdd_init’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_receiver.c:5245:5: warning: no previous prototype for ‘drbd_asender’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrivers: block: Mark functions as static in drbd_receiver.c
Rashika Kheria [Thu, 19 Dec 2013 09:41:09 +0000 (15:11 +0530)]
drivers: block: Mark functions as static in drbd_receiver.c

Mark functions conn_wait_active_ee_empty() and
drbd_crypto_alloc_digest_safe() as static in drbd/drbd_receiver.c
because they are not used outside this file.

This eliminates the following warning in drbd/drbd_receiver.c:
drivers/block/drbd/drbd_receiver.c:1401:6: warning: no previous prototype for ‘conn_wait_active_ee_empty’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_receiver.c:3259:21: warning: no previous prototype for ‘drbd_crypto_alloc_digest_safe’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
10 years agodrivers: block: Mark functions as static in drbd_req.c
Rashika Kheria [Thu, 19 Dec 2013 09:42:27 +0000 (15:12 +0530)]
drivers: block: Mark functions as static in drbd_req.c

Mark functions drbd_request_prepare() and find_oldest_request() as
static in drbd/drbd_req.c because they are not used outside this file.

This eliminates the following warnings in drbd/drbd_req.c:
drivers/block/drbd/drbd_req.c:1037:1: warning: no previous prototype for ‘drbd_request_prepare’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_req.c:1323:22: warning: no previous prototype for ‘find_oldest_request’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>