All of lore.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] drivers/dma/: no "static inline" in C files
@ 2007-02-25 23:16 Adrian Bunk
  2007-02-26 18:42 ` Christopher Leech
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2007-02-25 23:16 UTC (permalink / raw)
  To: Chris Leech; +Cc: David S. Miller, linux-kernel

This patch changes "static inline"s in C files to "static":
gcc should know best whether or not to inline a static function.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 drivers/dma/async_tx.c |   12 ++++++------
 drivers/dma/iop-adma.c |   14 +++++++-------
 2 files changed, 13 insertions(+), 13 deletions(-)

--- linux-2.6.20-mm2/drivers/dma/iop-adma.c.old	2007-02-25 19:16:37.000000000 +0100
+++ linux-2.6.20-mm2/drivers/dma/iop-adma.c	2007-02-25 19:16:58.000000000 +0100
@@ -48,7 +48,7 @@
  * @slot: Slot to free
  * Caller must hold &iop_chan->lock while calling this function
  */
-static inline void iop_adma_free_slots(struct iop_adma_desc_slot *slot)
+static void iop_adma_free_slots(struct iop_adma_desc_slot *slot)
 {
 	int stride = slot->stride;
 
@@ -60,7 +60,7 @@
 	}
 }
 
-static inline dma_cookie_t
+static dma_cookie_t
 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot *desc,
 	struct iop_adma_chan *iop_chan, dma_cookie_t cookie)
 {
@@ -108,7 +108,7 @@
 	return cookie;
 }
 
-static inline int
+static int
 iop_adma_clean_slot(struct iop_adma_desc_slot *desc,
 	struct iop_adma_chan *iop_chan)
 {
@@ -260,7 +260,7 @@
 	}
 }
 
-static inline void
+static void
 iop_adma_slot_cleanup(struct iop_adma_chan *iop_chan)
 {
 	spin_lock_bh(&iop_chan->lock);
@@ -453,7 +453,7 @@
 	return (i > 0) ? i : -ENOMEM;
 }
 
-static inline dma_cookie_t
+static dma_cookie_t
 iop_desc_assign_cookie(struct iop_adma_chan *iop_chan,
 	struct iop_adma_desc_slot *desc)
 {
@@ -465,7 +465,7 @@
 	return cookie;
 }
 
-static inline void iop_adma_check_threshold(struct iop_adma_chan *iop_chan)
+static void iop_adma_check_threshold(struct iop_adma_chan *iop_chan)
 {
 	PRINTK("iop adma%d: pending: %d\n", iop_chan->device->id,
 		iop_chan->pending);
@@ -719,7 +719,7 @@
 	}
 }
 
-static inline void iop_adma_schedule_cleanup(unsigned long id)
+static void iop_adma_schedule_cleanup(unsigned long id)
 {
 	tasklet_schedule(iop_adma_tasklet[id]);
 }
--- linux-2.6.20-mm2/drivers/dma/async_tx.c.old	2007-02-25 19:17:06.000000000 +0100
+++ linux-2.6.20-mm2/drivers/dma/async_tx.c	2007-02-25 19:17:48.000000000 +0100
@@ -66,7 +66,7 @@
 	kfree(ref);
 }
 
-static inline void
+static void
 init_dma_chan_ref(struct dma_chan_ref *ref, struct dma_chan *chan)
 {
 	INIT_LIST_HEAD(&ref->async_node);
@@ -316,7 +316,7 @@
 	do { } while (0);
 }
 
-static inline struct dma_chan *
+static struct dma_chan *
 async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx,
 	enum dma_transaction_type tx_type)
 {
@@ -324,7 +324,7 @@
 }
 #endif
 
-static inline void
+static void
 async_tx_submit(struct dma_chan *chan, struct dma_async_tx_descriptor *tx,
 	enum async_tx_flags flags, struct dma_async_tx_descriptor *depend_tx,
 	dma_async_tx_callback callback, void *callback_param)
@@ -370,7 +370,7 @@
  * @callback: function to call when the transaction completes
  * @callback_param: parameter to pass to the callback routine
  */
-static inline void
+static void
 sync_epilog(unsigned long flags, struct dma_async_tx_descriptor *depend_tx,
 	dma_async_tx_callback callback, void *callback_param)
 {
@@ -381,7 +381,7 @@
 		async_tx_ack(depend_tx);
 }
 
-static inline void
+static void
 do_async_xor(struct dma_async_tx_descriptor *tx, struct dma_device *device,
 	struct dma_chan *chan, struct page *dest, struct page **src_list,
 	unsigned int offset, unsigned int src_cnt, size_t len,
@@ -413,7 +413,7 @@
 		callback_param);
 }
 
-static inline void
+static void
 do_sync_xor(struct page *dest, struct page **src_list, unsigned int offset,
 	unsigned int src_cnt, size_t len, enum async_tx_flags flags,
 	struct dma_async_tx_descriptor *depend_tx,


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

* Re: [2.6 patch] drivers/dma/: no "static inline" in C files
  2007-02-25 23:16 [2.6 patch] drivers/dma/: no "static inline" in C files Adrian Bunk
@ 2007-02-26 18:42 ` Christopher Leech
  2007-02-26 22:53   ` Williams, Dan J
  0 siblings, 1 reply; 3+ messages in thread
From: Christopher Leech @ 2007-02-26 18:42 UTC (permalink / raw)
  To: Adrian Bunk, Williams, Dan J; +Cc: David S. Miller, linux-kernel

Thanks Adrian,

Dan, this applies to your code.  Mind adding it to your tree?

- Chris


On Sun, 2007-02-25 at 15:16 -0800, Adrian Bunk wrote:

This patch changes "static inline"s in C files to "static":
gcc should know best whether or not to inline a static function.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 drivers/dma/async_tx.c |   12 ++++++------
 drivers/dma/iop-adma.c |   14 +++++++-------
 2 files changed, 13 insertions(+), 13 deletions(-)

--- linux-2.6.20-mm2/drivers/dma/iop-adma.c.old 2007-02-25 19:16:37.000000000 +0100
+++ linux-2.6.20-mm2/drivers/dma/iop-adma.c     2007-02-25 19:16:58.000000000 +0100
@@ -48,7 +48,7 @@
  * @slot: Slot to free
  * Caller must hold &iop_chan->lock while calling this function
  */
-static inline void iop_adma_free_slots(struct iop_adma_desc_slot *slot)
+static void iop_adma_free_slots(struct iop_adma_desc_slot *slot)
 {
        int stride = slot->stride;

@@ -60,7 +60,7 @@
        }
 }

-static inline dma_cookie_t
+static dma_cookie_t
 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot *desc,
        struct iop_adma_chan *iop_chan, dma_cookie_t cookie)
 {
@@ -108,7 +108,7 @@
        return cookie;
 }

-static inline int
+static int
 iop_adma_clean_slot(struct iop_adma_desc_slot *desc,
        struct iop_adma_chan *iop_chan)
 {
@@ -260,7 +260,7 @@
        }
 }

-static inline void
+static void
 iop_adma_slot_cleanup(struct iop_adma_chan *iop_chan)
 {
        spin_lock_bh(&iop_chan->lock);
@@ -453,7 +453,7 @@
        return (i > 0) ? i : -ENOMEM;
 }

-static inline dma_cookie_t
+static dma_cookie_t
 iop_desc_assign_cookie(struct iop_adma_chan *iop_chan,
        struct iop_adma_desc_slot *desc)
 {
@@ -465,7 +465,7 @@
        return cookie;
 }

-static inline void iop_adma_check_threshold(struct iop_adma_chan *iop_chan)
+static void iop_adma_check_threshold(struct iop_adma_chan *iop_chan)
 {
        PRINTK("iop adma%d: pending: %d\n", iop_chan->device->id,
                iop_chan->pending);
@@ -719,7 +719,7 @@
        }
 }

-static inline void iop_adma_schedule_cleanup(unsigned long id)
+static void iop_adma_schedule_cleanup(unsigned long id)
 {
        tasklet_schedule(iop_adma_tasklet[id]);
 }
--- linux-2.6.20-mm2/drivers/dma/async_tx.c.old 2007-02-25 19:17:06.000000000 +0100
+++ linux-2.6.20-mm2/drivers/dma/async_tx.c     2007-02-25 19:17:48.000000000 +0100
@@ -66,7 +66,7 @@
        kfree(ref);
 }

-static inline void
+static void
 init_dma_chan_ref(struct dma_chan_ref *ref, struct dma_chan *chan)
 {
        INIT_LIST_HEAD(&ref->async_node);
@@ -316,7 +316,7 @@
        do { } while (0);
 }

-static inline struct dma_chan *
+static struct dma_chan *
 async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx,
        enum dma_transaction_type tx_type)
 {
@@ -324,7 +324,7 @@
 }
 #endif

-static inline void
+static void
 async_tx_submit(struct dma_chan *chan, struct dma_async_tx_descriptor *tx,
        enum async_tx_flags flags, struct dma_async_tx_descriptor *depend_tx,
        dma_async_tx_callback callback, void *callback_param)
@@ -370,7 +370,7 @@
  * @callback: function to call when the transaction completes
  * @callback_param: parameter to pass to the callback routine
  */
-static inline void
+static void
 sync_epilog(unsigned long flags, struct dma_async_tx_descriptor *depend_tx,
        dma_async_tx_callback callback, void *callback_param)
 {
@@ -381,7 +381,7 @@
                async_tx_ack(depend_tx);
 }

-static inline void
+static void
 do_async_xor(struct dma_async_tx_descriptor *tx, struct dma_device *device,
        struct dma_chan *chan, struct page *dest, struct page **src_list,
        unsigned int offset, unsigned int src_cnt, size_t len,
@@ -413,7 +413,7 @@
                callback_param);
 }

-static inline void
+static void
 do_sync_xor(struct page *dest, struct page **src_list, unsigned int offset,
        unsigned int src_cnt, size_t len, enum async_tx_flags flags,
        struct dma_async_tx_descriptor *depend_tx,



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

* RE: [2.6 patch] drivers/dma/: no "static inline" in C files
  2007-02-26 18:42 ` Christopher Leech
@ 2007-02-26 22:53   ` Williams, Dan J
  0 siblings, 0 replies; 3+ messages in thread
From: Williams, Dan J @ 2007-02-26 22:53 UTC (permalink / raw)
  To: Leech, Christopher, Adrian Bunk; +Cc: David S. Miller, linux-kernel

> Thanks Adrian,
> 
> Dan, this applies to your code.  Mind adding it to your tree?
> 
> - Chris
> 
> 
> On Sun, 2007-02-25 at 15:16 -0800, Adrian Bunk wrote:
> 
> This patch changes "static inline"s in C files to "static":
> gcc should know best whether or not to inline a static function.
> 
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
> 
Applied.

--
Dan

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

end of thread, other threads:[~2007-02-26 22:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-25 23:16 [2.6 patch] drivers/dma/: no "static inline" in C files Adrian Bunk
2007-02-26 18:42 ` Christopher Leech
2007-02-26 22:53   ` Williams, Dan J

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.