[BACK]Return to uipc_socket.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/uipc_socket.c between version 1.115.6.2 and 1.116

version 1.115.6.2, 2006/06/01 22:38:09 version 1.116, 2006/03/01 12:38:21
Line 91  __KERNEL_RCSID(0, "$NetBSD$");
Line 91  __KERNEL_RCSID(0, "$NetBSD$");
 #include <sys/pool.h>  #include <sys/pool.h>
 #include <sys/event.h>  #include <sys/event.h>
 #include <sys/poll.h>  #include <sys/poll.h>
 #include <sys/kauth.h>  
   
 #include <uvm/uvm.h>  #include <uvm/uvm.h>
   
Line 127  EVCNT_ATTACH_STATIC(sosend_kvalimit);
Line 126  EVCNT_ATTACH_STATIC(sosend_kvalimit);
   
 #endif /* SOSEND_COUNTERS */  #endif /* SOSEND_COUNTERS */
   
 static struct callback_entry sokva_reclaimerentry;  void
   soinit(void)
   {
   
           /* Set the initial adjusted socket buffer size. */
           if (sb_max_set(sb_max))
                   panic("bad initial sb_max value: %lu", sb_max);
   
   }
   
 #ifdef SOSEND_NO_LOAN  #ifdef SOSEND_NO_LOAN
 int use_sosend_loan = 0;  int use_sosend_loan = 0;
Line 148  static int sokvawaiters;
Line 155  static int sokvawaiters;
 #define SOCK_LOAN_THRESH        4096  #define SOCK_LOAN_THRESH        4096
 #define SOCK_LOAN_CHUNK         65536  #define SOCK_LOAN_CHUNK         65536
   
 static size_t sodopendfree(void);  static size_t sodopendfree(struct socket *);
 static size_t sodopendfreel(void);  static size_t sodopendfreel(struct socket *);
   
 static vsize_t  static vsize_t
 sokvareserve(struct socket *so, vsize_t len)  sokvareserve(struct socket *so, vsize_t len)
Line 166  sokvareserve(struct socket *so, vsize_t 
Line 173  sokvareserve(struct socket *so, vsize_t 
                  * try to do pendfree.                   * try to do pendfree.
                  */                   */
   
                 freed = sodopendfreel();                  freed = sodopendfreel(so);
   
                 /*                  /*
                  * if some kva was freed, try again.                   * if some kva was freed, try again.
Line 285  sodoloanfree(struct vm_page **pgs, caddr
Line 292  sodoloanfree(struct vm_page **pgs, caddr
 }  }
   
 static size_t  static size_t
 sodopendfree()  sodopendfree(struct socket *so)
 {  {
         int s;          int s;
         size_t rv;          size_t rv;
   
         s = splvm();          s = splvm();
         simple_lock(&so_pendfree_slock);          simple_lock(&so_pendfree_slock);
         rv = sodopendfreel();          rv = sodopendfreel(so);
         simple_unlock(&so_pendfree_slock);          simple_unlock(&so_pendfree_slock);
         splx(s);          splx(s);
   
Line 308  sodopendfree()
Line 315  sodopendfree()
  */   */
   
 static size_t  static size_t
 sodopendfreel()  sodopendfreel(struct socket *so)
 {  {
         size_t rv = 0;          size_t rv = 0;
   
Line 432  sosend_loan(struct socket *so, struct ui
Line 439  sosend_loan(struct socket *so, struct ui
         return (space);          return (space);
 }  }
   
 static int  
 sokva_reclaim_callback(struct callback_entry *ce, void *obj, void *arg)  
 {  
   
         KASSERT(ce == &sokva_reclaimerentry);  
         KASSERT(obj == NULL);  
   
         sodopendfree();  
         if (!vm_map_starved_p(kernel_map)) {  
                 return CALLBACK_CHAIN_ABORT;  
         }  
         return CALLBACK_CHAIN_CONTINUE;  
 }  
   
 void  
 soinit(void)  
 {  
   
         /* Set the initial adjusted socket buffer size. */  
         if (sb_max_set(sb_max))  
                 panic("bad initial sb_max value: %lu", sb_max);  
   
         callback_register(&vm_map_to_kernel(kernel_map)->vmk_reclaim_callback,  
             &sokva_reclaimerentry, NULL, sokva_reclaim_callback);  
 }  
   
 /*  /*
  * Socket operation routines.   * Socket operation routines.
  * These routines are called by the routines in   * These routines are called by the routines in
Line 497  socreate(int dom, struct socket **aso, i
Line 478  socreate(int dom, struct socket **aso, i
         so->so_mowner = &prp->pr_domain->dom_mowner;          so->so_mowner = &prp->pr_domain->dom_mowner;
 #endif  #endif
         if (l != NULL) {          if (l != NULL) {
                 uid = kauth_cred_geteuid(l->l_proc->p_cred);                  uid = l->l_proc->p_ucred->cr_uid;
         } else {          } else {
                 uid = 0;                  uid = 0;
         }          }
Line 724  sodisconnect(struct socket *so)
Line 705  sodisconnect(struct socket *so)
             (struct lwp *)0);              (struct lwp *)0);
  bad:   bad:
         splx(s);          splx(s);
         sodopendfree();          sodopendfree(so);
         return (error);          return (error);
 }  }
   
Line 756  sosend(struct socket *so, struct mbuf *a
Line 737  sosend(struct socket *so, struct mbuf *a
         int             error, s, dontroute, atomic;          int             error, s, dontroute, atomic;
   
         p = l->l_proc;          p = l->l_proc;
         sodopendfree();          sodopendfree(so);
   
         clen = 0;          clen = 0;
         atomic = sosendallatonce(so) || top;          atomic = sosendallatonce(so) || top;
Line 974  soreceive(struct socket *so, struct mbuf
Line 955  soreceive(struct socket *so, struct mbuf
                 flags = 0;                  flags = 0;
   
         if ((flags & MSG_DONTWAIT) == 0)          if ((flags & MSG_DONTWAIT) == 0)
                 sodopendfree();                  sodopendfree(so);
   
         if (flags & MSG_OOB) {          if (flags & MSG_OOB) {
                 m = m_get(M_WAIT, MT_DATA);                  m = m_get(M_WAIT, MT_DATA);

Legend:
Removed from v.1.115.6.2  
changed lines
  Added in v.1.116

CVSweb <webmaster@jp.NetBSD.org>