1. 16 7月, 2014 1 次提交
  2. 06 9月, 2013 1 次提交
  3. 24 4月, 2013 1 次提交
  4. 08 3月, 2013 1 次提交
  5. 21 11月, 2012 1 次提交
  6. 26 6月, 2012 1 次提交
  7. 13 4月, 2012 1 次提交
  8. 29 8月, 2011 1 次提交
    • J
      caif: Remove OOM messages, use kzalloc · 7ac2ed0c
      Joe Perches 提交于
      Remove per site OOM messages because they duplicate
      the generic mm subsystem OOM message.
      
      Use kzalloc instead of kmalloc/memset
      when next to the OOM message removals.
      
      Reduces object size (allyesconfig ~2%)
      
      $ size -t drivers/net/caif/built-in.o.old net/caif/built-in.o.old
         text	   data	    bss	    dec	    hex	filename
        32297	    700	   8224	  41221	   a105	drivers/net/caif/built-in.o.old
        72159	   1317	  20552	  94028	  16f4c	net/caif/built-in.o.old
       104456	   2017	  28776	 135249	  21051	(TOTALS)
      $ size -t drivers/net/caif/built-in.o.new net/caif/built-in.o.new
         text	   data	    bss	    dec	    hex	filename
        31975	    700	   8184	  40859	   9f9b	drivers/net/caif/built-in.o.new
        70748	   1317	  20152	  92217	  16839	net/caif/built-in.o.new
       102723	   2017	  28336	 133076	  207d4	(TOTALS)
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7ac2ed0c
  9. 23 5月, 2011 2 次提交
  10. 16 5月, 2011 1 次提交
  11. 12 4月, 2011 1 次提交
  12. 04 11月, 2010 1 次提交
  13. 07 9月, 2010 1 次提交
    • J
      net/caif: Use pr_fmt · b31fa5ba
      Joe Perches 提交于
      This patch standardizes caif message logging prefixes.
      
      Add #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
      Add missing "\n"s to some logging messages
      Convert pr_warning to pr_warn
      
      This changes the logging message prefix from CAIF: to caif:
      for all uses but caif_socket.c and chnl_net.c.  Those now use
      their filename without extension.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b31fa5ba
  14. 21 6月, 2010 2 次提交
  15. 24 5月, 2010 1 次提交
  16. 18 5月, 2010 1 次提交
  17. 29 4月, 2010 1 次提交
    • S
      caif: Disconnect without waiting for response · 8d545c8f
      Sjur Braendeland 提交于
      Changes:
      o Function cfcnfg_disconn_adapt_layer is changed to do asynchronous
        disconnect, not waiting for any response from the modem. Due to this
        the function cfcnfg_linkdestroy_rsp does nothing anymore.
      o Because disconnect may take down a connection before a connect response
        is received the function cfcnfg_linkup_rsp is checking if the client is
        still waiting for the response, if not a disconnect request is sent to
        the modem.
      o cfctrl is no longer keeping track of pending disconnect requests.
      o Added function cfctrl_cancel_req, which is used for deleting a pending
        connect request if disconnect is done before connect response is received.
      o Removed unused function cfctrl_insert_req2
      o Added better handling of connect reject from modem.
      Signed-off-by: NSjur Braendeland <sjur.brandeland@stericsson.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8d545c8f
  18. 31 3月, 2010 1 次提交
    • S
      net-caif: add CAIF core protocol stack · b482cd20
      Sjur Braendeland 提交于
      CAIF generic protocol implementation. This layer is
      somewhat generic in order to be able to use and test it outside
      the Linux Kernel.
      
      cfctrl.c     - CAIF control protocol layer
      cfdbgl.c     - CAIF debug protocol layer
      cfdgml.c     - CAIF datagram protocol layer
      cffrml.c     - CAIF framing protocol layer
      cfmuxl.c     - CAIF mux protocol layer
      cfrfml.c     - CAIF remote file manager protocol layer
      cfserl.c     - CAIF serial (fragmentation) protocol layer
      cfsrvl.c     - CAIF generic service layer functions
      cfutill.c    - CAIF utility protocol layer
      cfveil.c     - CAIF AT protocol layer
      cfvidl.c     - CAIF video protocol layer
      Signed-off-by: NSjur Braendeland <sjur.brandeland@stericsson.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b482cd20