[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.116.2.4 and 1.116.4.3

version 1.116.2.4, 2006/08/11 15:45:47 version 1.116.4.3, 2006/05/06 23:31:31
Line 127  EVCNT_ATTACH_STATIC(sosend_kvalimit);
Line 127  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 sock_loan_thresh = -1;  int use_sosend_loan = 0;
 #else  #else
 int sock_loan_thresh = 4096;  int use_sosend_loan = 1;
 #endif  #endif
   
 static struct simplelock so_pendfree_slock = SIMPLELOCK_INITIALIZER;  static struct simplelock so_pendfree_slock = SIMPLELOCK_INITIALIZER;
Line 145  int somaxkva = SOMAXKVA;
Line 153  int somaxkva = SOMAXKVA;
 static int socurkva;  static int socurkva;
 static int sokvawaiters;  static int sokvawaiters;
   
   #define SOCK_LOAN_THRESH        4096
 #define SOCK_LOAN_CHUNK         65536  #define SOCK_LOAN_CHUNK         65536
   
 static size_t sodopendfree(void);  static size_t sodopendfree(void);
Line 431  sosend_loan(struct socket *so, struct ui
Line 440  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 477  socreate(int dom, struct socket **aso, i
Line 460  socreate(int dom, struct socket **aso, i
                 prp = pffindproto(dom, proto, type);                  prp = pffindproto(dom, proto, type);
         else          else
                 prp = pffindtype(dom, type);                  prp = pffindtype(dom, type);
         if (prp == 0) {          if (prp == 0 || prp->pr_usrreq == 0)
                 /* no support for domain */  
                 if (pffinddomain(dom) == 0)  
                         return (EAFNOSUPPORT);  
                 /* no support for socket type */  
                 if (proto == 0 && type != 0)  
                         return (EPROTOTYPE);  
                 return (EPROTONOSUPPORT);  
         }  
         if (prp->pr_usrreq == 0)  
                 return (EPROTONOSUPPORT);                  return (EPROTONOSUPPORT);
         if (prp->pr_type != type)          if (prp->pr_type != type)
                 return (EPROTOTYPE);                  return (EPROTOTYPE);
Line 505  socreate(int dom, struct socket **aso, i
Line 479  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_cred);                  uid = kauth_cred_geteuid(l->l_proc->p_cred);
         } else {          } else {
                 uid = 0;                  uid = 0;
         }          }
Line 852  sosend(struct socket *so, struct mbuf *a
Line 826  sosend(struct socket *so, struct mbuf *a
                                         mlen = MLEN;                                          mlen = MLEN;
                                 }                                  }
                                 MCLAIM(m, so->so_snd.sb_mowner);                                  MCLAIM(m, so->so_snd.sb_mowner);
                                 if (sock_loan_thresh >= 0 &&                                  if (use_sosend_loan &&
                                     uio->uio_iov->iov_len >= sock_loan_thresh &&                                      uio->uio_iov->iov_len >= SOCK_LOAN_THRESH &&
                                     space >= sock_loan_thresh &&                                      space >= SOCK_LOAN_THRESH &&
                                     (len = sosend_loan(so, uio, m,                                      (len = sosend_loan(so, uio, m,
                                                        space)) != 0) {                                                         space)) != 0) {
                                         SOSEND_COUNTER_INCR(&sosend_loan_big);                                          SOSEND_COUNTER_INCR(&sosend_loan_big);

Legend:
Removed from v.1.116.2.4  
changed lines
  Added in v.1.116.4.3

CVSweb <webmaster@jp.NetBSD.org>