diff options
author | Kozlov Dmitry <dima@server> | 2010-08-21 12:53:18 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-08-21 12:53:38 +0400 |
commit | c9db62c69f26684eb5b00c620d0e182f3e336412 (patch) | |
tree | eb68981248e8afb71ad8b0aff395073a457ce92a /pptpd-1.3.3 | |
parent | c30962027d1bd4e93ffd484f4177dee53a36aa1c (diff) | |
download | accel-ppp-xebd-c9db62c69f26684eb5b00c620d0e182f3e336412.tar.gz accel-ppp-xebd-c9db62c69f26684eb5b00c620d0e182f3e336412.zip |
* use rcu + spin_lock in gre module for 2.6 kernel
* use rcu + spin_lock instead of rcu + semaphone in pptp module
* fixed incorrect rcu_synchronize() place
* use static bitmap (DECLARE_BITMAP) instead of dynamically allocated
* use vmalloc for callid_sock memory allocation instead of BITS_PER_LONG + __get_free_pages
* avoid copying writable clones (thanks to theMIROn)
Diffstat (limited to 'pptpd-1.3.3')
-rwxr-xr-x | pptpd-1.3.3/configure | 2 | ||||
-rw-r--r-- | pptpd-1.3.3/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pptpd-1.3.3/configure b/pptpd-1.3.3/configure index c8c463e..98dc1e8 100755 --- a/pptpd-1.3.3/configure +++ b/pptpd-1.3.3/configure @@ -2043,7 +2043,7 @@ fi # Define the identity of the package. PACKAGE=pptpd - VERSION=0.8.4 + VERSION=0.8.5 cat >>confdefs.h <<_ACEOF diff --git a/pptpd-1.3.3/configure.in b/pptpd-1.3.3/configure.in index 185963b..8c4e640 100644 --- a/pptpd-1.3.3/configure.in +++ b/pptpd-1.3.3/configure.in @@ -1,7 +1,7 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(pptpd,0.8.4) +AM_INIT_AUTOMAKE(pptpd,0.8.5) AC_DEFINE(BCRELAY,[],"Enable Broadcast Relay") AC_DEFINE(PPPD_VERSION,[],"PPPD version") |