rpms/openafs-kmod/F-17 openafs-1.6.2.1-hlist-iterator-change.patch, NONE, 1.1 .cvsignore, 1.11, 1.12 openafs-kmod.spec, 1.86, 1.87 sources, 1.14, 1.15 openafs-1.6.2-Linux-3.8-session_keyring-changes.patch, 1.1, NONE openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch, 1.1, NONE openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch, 1.1, NONE openafs-1.6.2-Linux-setpag-may-replace-credentials.patch, 1.1, NONE
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv28127
Modified Files:
.cvsignore openafs-kmod.spec sources
Added Files:
openafs-1.6.2.1-hlist-iterator-change.patch
Removed Files:
openafs-1.6.2-Linux-3.8-session_keyring-changes.patch
openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch
openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch
openafs-1.6.2-Linux-setpag-may-replace-credentials.patch
Log Message:
* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> - 1.6.2.1-1
- Update to OpenAFS 1.6.2.1
- Add patches to support kernel 3.9
openafs-1.6.2.1-hlist-iterator-change.patch:
acinclude.m4 | 1 +
src/afs/LINUX/osi_vnodeops.c | 6 +++++-
src/cf/linux-test4.m4 | 15 +++++++++++++++
3 files changed, 21 insertions(+), 1 deletion(-)
--- NEW FILE openafs-1.6.2.1-hlist-iterator-change.patch ---
commit 0671e93abcf927d48f935283682e6761a933d558
Author: Marc Dionne <marc.c.dionne(a)gmail.com>
Date: Tue Mar 5 20:54:50 2013 -0500
Linux 3.9: hlist iterator change
hlist iterators have been reworked to not require a temporary
node parameter.
Reviewed-on: http://gerrit.openafs.org/9403
Tested-by: BuildBot <buildbot(a)rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman(a)your-file-system.com>
Reviewed-by: Derrick Brashear <shadow(a)your-file-system.com>
(cherry picked from commit 9cfd7f768ca350d3b750e89e7ddb186bdad6f726)
Change-Id: I47df8894467f4bb1c60cf239ec0ce0a4d6ca29aa
Reviewed-on: http://gerrit.openafs.org/9639
Tested-by: BuildBot <buildbot(a)rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow(a)your-file-system.com>
Reviewed-by: Benjamin Kaduk <kaduk(a)mit.edu>
Reviewed-by: Michael Meffie <mmeffie(a)sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand(a)desy.de>
diff --git a/acinclude.m4 b/acinclude.m4
index 4223bb1..6f5bc8d 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -991,6 +991,7 @@ case $AFS_SYSNAME in *_linux* | *_umlinux*)
LINUX_KMAP_ATOMIC_TAKES_NO_KM_TYPE
LINUX_DENTRY_OPEN_TAKES_PATH
LINUX_D_ALIAS_IS_HLIST
+ LINUX_HLIST_ITERATOR_NO_NODE
LINUX_IOP_I_CREATE_TAKES_BOOL
LINUX_DOP_D_REVALIDATE_TAKES_UNSIGNED
LINUX_IOP_LOOKUP_TAKES_UNSIGNED
diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c
index 1366b96..8e7dfe2 100644
--- a/src/afs/LINUX/osi_vnodeops.c
+++ b/src/afs/LINUX/osi_vnodeops.c
@@ -701,7 +701,7 @@ canonical_dentry(struct inode *ip)
{
struct vcache *vcp = VTOAFS(ip);
struct dentry *first = NULL, *ret = NULL, *cur;
-#if defined(D_ALIAS_IS_HLIST)
+#if defined(D_ALIAS_IS_HLIST) && !defined(HLIST_ITERATOR_NO_NODE)
struct hlist_node *p;
#endif
@@ -724,7 +724,11 @@ canonical_dentry(struct inode *ip)
# endif
#if defined(D_ALIAS_IS_HLIST)
+# if defined(HLIST_ITERATOR_NO_NODE)
+ hlist_for_each_entry(cur, &ip->i_dentry, d_alias) {
+# else
hlist_for_each_entry(cur, p, &ip->i_dentry, d_alias) {
+# endif
#else
list_for_each_entry_reverse(cur, &ip->i_dentry, d_alias) {
#endif
diff --git a/src/cf/linux-test4.m4 b/src/cf/linux-test4.m4
index fc0149f..7c0a181 100644
--- a/src/cf/linux-test4.m4
+++ b/src/cf/linux-test4.m4
@@ -714,6 +714,21 @@ AC_DEFUN([LINUX_D_ALIAS_IS_HLIST], [
])
+AC_DEFUN([LINUX_HLIST_ITERATOR_NO_NODE], [
+ AC_CHECK_LINUX_BUILD([whether hlist iterators don't need a node parameter],
+ [ac_cv_linux_hlist_takes_no_node],
+ [#include <linux/list.h>
+ #include <linux/fs.h>],
+ [struct dentry *d = NULL, *cur;
+ struct inode *ip;
+ hlist_for_each_entry(cur, &ip->i_dentry, d_alias) { }
+ ],
+ [HLIST_ITERATOR_NO_NODE],
+ [define if hlist iterators don't need a node parameter],
+ [])
+])
+
+
AC_DEFUN([LINUX_IOP_I_CREATE_TAKES_BOOL], [
AC_CHECK_LINUX_BUILD([whether inode_operations.create takes a bool],
[ac_cv_linux_func_i_create_takes_bool],
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-17/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 15 Feb 2013 03:17:27 -0000 1.11
+++ .cvsignore 2 May 2013 00:13:43 -0000 1.12
@@ -1 +1 @@
-openafs-1.6.2-src.tar.bz2
+openafs-1.6.2.1-src.tar.bz2
Index: openafs-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-17/openafs-kmod.spec,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- openafs-kmod.spec 1 May 2013 08:05:36 -0000 1.86
+++ openafs-kmod.spec 2 May 2013 00:13:44 -0000 1.87
@@ -20,8 +20,8 @@
# name should have a -kmod suffix
Name: %{kmod_name}-kmod
-Version: 1.6.2
-Release: 4%{?dist}.11
+Version: 1.6.2.1
+Release: 1%{?dist}
Summary: Kernel module(s)
Group: System Environment/Kernel
@@ -32,19 +32,9 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-# Upstream patches to support kernel 3.8.
-# http://gerrit.openafs.org/8941
-Patch0: openafs-1.6.2-Linux-3.8-session_keyring-changes.patch
-# http://gerrit.openafs.org/8942
-Patch1: openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch
-
-# Fix "aklog -setpag" on Linux 3.8
-# http://gerrit.openafs.org/8948
-Patch2: openafs-1.6.2-Linux-setpag-may-replace-credentials.patch
-
-# Make broken builds a little easier to debug
-# http://gerrit.openafs.org/9334
-Patch3: openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch
+# Upstream patch to support kernel 3.9.
+# http://gerrit.openafs.org/9639
+Patch0: openafs-1.6.2.1-hlist-iterator-change.patch
%global AkmodsBuildRequires %{_bindir}/kmodtool, pam-devel, ncurses-devel, flex, byacc, bison, automake
@@ -73,13 +63,8 @@
# apply patches and do other stuff here
pushd %{kmod_name}-%{version}
-# Kernel 3.8 patches
+# Kernel 3.9 patch
%patch0 -p1
-%patch1 -p1
-# Fix "aklog -setpag" on Linux 3.8
-%patch2 -p1
-# Detect undefined symbols in kmods
-%patch3 -p1
./regen.sh
popd
@@ -118,8 +103,9 @@
%changelog
-* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.2-4.11
-- Rebuilt for kernel
+* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> - 1.6.2.1-1
+- Update to OpenAFS 1.6.2.1
+- Add patches to support kernel 3.9
* Thu Apr 18 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.2-4.10
- Rebuilt for kernel
Index: sources
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-17/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 22 Feb 2013 18:52:34 -0000 1.14
+++ sources 2 May 2013 00:13:44 -0000 1.15
@@ -1 +1 @@
-ab1335f74214487aa363b614fbfa3a00 openafs-1.6.2-src.tar.bz2
+465092bf21ca7704ed9d175506ba6cef openafs-1.6.2.1-src.tar.bz2
--- openafs-1.6.2-Linux-3.8-session_keyring-changes.patch DELETED ---
--- openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch DELETED ---
--- openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch DELETED ---
--- openafs-1.6.2-Linux-setpag-may-replace-credentials.patch DELETED ---
11 years, 6 months
rpms/openafs-kmod/F-18 openafs-1.6.2.1-hlist-iterator-change.patch, NONE, 1.1 .cvsignore, 1.12, 1.13 openafs-kmod.spec, 1.57, 1.58 sources, 1.16, 1.17 openafs-1.6.2-Linux-3.8-session_keyring-changes.patch, 1.1, NONE openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch, 1.1, NONE openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch, 1.1, NONE openafs-1.6.2-Linux-setpag-may-replace-credentials.patch, 1.1, NONE
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27703
Modified Files:
.cvsignore openafs-kmod.spec sources
Added Files:
openafs-1.6.2.1-hlist-iterator-change.patch
Removed Files:
openafs-1.6.2-Linux-3.8-session_keyring-changes.patch
openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch
openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch
openafs-1.6.2-Linux-setpag-may-replace-credentials.patch
Log Message:
* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> - 1.6.2.1-1
- Update to OpenAFS 1.6.2.1
- Add patches to support kernel 3.9
openafs-1.6.2.1-hlist-iterator-change.patch:
acinclude.m4 | 1 +
src/afs/LINUX/osi_vnodeops.c | 6 +++++-
src/cf/linux-test4.m4 | 15 +++++++++++++++
3 files changed, 21 insertions(+), 1 deletion(-)
--- NEW FILE openafs-1.6.2.1-hlist-iterator-change.patch ---
commit 0671e93abcf927d48f935283682e6761a933d558
Author: Marc Dionne <marc.c.dionne(a)gmail.com>
Date: Tue Mar 5 20:54:50 2013 -0500
Linux 3.9: hlist iterator change
hlist iterators have been reworked to not require a temporary
node parameter.
Reviewed-on: http://gerrit.openafs.org/9403
Tested-by: BuildBot <buildbot(a)rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman(a)your-file-system.com>
Reviewed-by: Derrick Brashear <shadow(a)your-file-system.com>
(cherry picked from commit 9cfd7f768ca350d3b750e89e7ddb186bdad6f726)
Change-Id: I47df8894467f4bb1c60cf239ec0ce0a4d6ca29aa
Reviewed-on: http://gerrit.openafs.org/9639
Tested-by: BuildBot <buildbot(a)rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow(a)your-file-system.com>
Reviewed-by: Benjamin Kaduk <kaduk(a)mit.edu>
Reviewed-by: Michael Meffie <mmeffie(a)sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand(a)desy.de>
diff --git a/acinclude.m4 b/acinclude.m4
index 4223bb1..6f5bc8d 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -991,6 +991,7 @@ case $AFS_SYSNAME in *_linux* | *_umlinux*)
LINUX_KMAP_ATOMIC_TAKES_NO_KM_TYPE
LINUX_DENTRY_OPEN_TAKES_PATH
LINUX_D_ALIAS_IS_HLIST
+ LINUX_HLIST_ITERATOR_NO_NODE
LINUX_IOP_I_CREATE_TAKES_BOOL
LINUX_DOP_D_REVALIDATE_TAKES_UNSIGNED
LINUX_IOP_LOOKUP_TAKES_UNSIGNED
diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c
index 1366b96..8e7dfe2 100644
--- a/src/afs/LINUX/osi_vnodeops.c
+++ b/src/afs/LINUX/osi_vnodeops.c
@@ -701,7 +701,7 @@ canonical_dentry(struct inode *ip)
{
struct vcache *vcp = VTOAFS(ip);
struct dentry *first = NULL, *ret = NULL, *cur;
-#if defined(D_ALIAS_IS_HLIST)
+#if defined(D_ALIAS_IS_HLIST) && !defined(HLIST_ITERATOR_NO_NODE)
struct hlist_node *p;
#endif
@@ -724,7 +724,11 @@ canonical_dentry(struct inode *ip)
# endif
#if defined(D_ALIAS_IS_HLIST)
+# if defined(HLIST_ITERATOR_NO_NODE)
+ hlist_for_each_entry(cur, &ip->i_dentry, d_alias) {
+# else
hlist_for_each_entry(cur, p, &ip->i_dentry, d_alias) {
+# endif
#else
list_for_each_entry_reverse(cur, &ip->i_dentry, d_alias) {
#endif
diff --git a/src/cf/linux-test4.m4 b/src/cf/linux-test4.m4
index fc0149f..7c0a181 100644
--- a/src/cf/linux-test4.m4
+++ b/src/cf/linux-test4.m4
@@ -714,6 +714,21 @@ AC_DEFUN([LINUX_D_ALIAS_IS_HLIST], [
])
+AC_DEFUN([LINUX_HLIST_ITERATOR_NO_NODE], [
+ AC_CHECK_LINUX_BUILD([whether hlist iterators don't need a node parameter],
+ [ac_cv_linux_hlist_takes_no_node],
+ [#include <linux/list.h>
+ #include <linux/fs.h>],
+ [struct dentry *d = NULL, *cur;
+ struct inode *ip;
+ hlist_for_each_entry(cur, &ip->i_dentry, d_alias) { }
+ ],
+ [HLIST_ITERATOR_NO_NODE],
+ [define if hlist iterators don't need a node parameter],
+ [])
+])
+
+
AC_DEFUN([LINUX_IOP_I_CREATE_TAKES_BOOL], [
AC_CHECK_LINUX_BUILD([whether inode_operations.create takes a bool],
[ac_cv_linux_func_i_create_takes_bool],
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-18/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore 15 Feb 2013 00:11:10 -0000 1.12
+++ .cvsignore 2 May 2013 00:10:00 -0000 1.13
@@ -1 +1 @@
-openafs-1.6.2-src.tar.bz2
+openafs-1.6.2.1-src.tar.bz2
Index: openafs-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-18/openafs-kmod.spec,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- openafs-kmod.spec 1 May 2013 12:01:46 -0000 1.57
+++ openafs-kmod.spec 2 May 2013 00:10:00 -0000 1.58
@@ -20,8 +20,8 @@
# name should have a -kmod suffix
Name: %{kmod_name}-kmod
-Version: 1.6.2
-Release: 3%{?dist}.11
+Version: 1.6.2.1
+Release: 1%{?dist}
Summary: Kernel module(s)
Group: System Environment/Kernel
@@ -32,19 +32,9 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-# Upstream patches to support kernel 3.8.
-# http://gerrit.openafs.org/8941
-Patch0: openafs-1.6.2-Linux-3.8-session_keyring-changes.patch
-# http://gerrit.openafs.org/8942
-Patch1: openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch
-
-# Fix "aklog -setpag" on Linux 3.8
-# http://gerrit.openafs.org/8948
-Patch2: openafs-1.6.2-Linux-setpag-may-replace-credentials.patch
-
-# Make broken builds a little easier to debug
-# http://gerrit.openafs.org/9334
-Patch3: openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch
+# Upstream patch to support kernel 3.9.
+# http://gerrit.openafs.org/9639
+Patch0: openafs-1.6.2.1-hlist-iterator-change.patch
%global AkmodsBuildRequires %{_bindir}/kmodtool, pam-devel, ncurses-devel, flex, byacc, bison, automake
@@ -73,13 +63,8 @@
# apply patches and do other stuff here
pushd %{kmod_name}-%{version}
-# Kernel 3.8 patches
+# Kernel 3.9 patch
%patch0 -p1
-%patch1 -p1
-# Fix "aklog -setpag" on Linux 3.8
-%patch2 -p1
-# Detect undefined symbols in kmods
-%patch3 -p1
./regen.sh
popd
@@ -118,8 +103,9 @@
%changelog
-* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.2-3.11
-- Rebuilt for kernel
+* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> - 1.6.2.1-1
+- Update to OpenAFS 1.6.2.1
+- Add patches to support kernel 3.9
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.2-3.10
Rebuilt for kernel
Index: sources
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-18/sources,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sources 21 Feb 2013 21:45:26 -0000 1.16
+++ sources 2 May 2013 00:10:00 -0000 1.17
@@ -1 +1 @@
-ab1335f74214487aa363b614fbfa3a00 openafs-1.6.2-src.tar.bz2
+465092bf21ca7704ed9d175506ba6cef openafs-1.6.2.1-src.tar.bz2
--- openafs-1.6.2-Linux-3.8-session_keyring-changes.patch DELETED ---
--- openafs-1.6.2-Linux-3.8-vmtruncate-removal.patch DELETED ---
--- openafs-1.6.2-Linux-Detect-undefined-symbols-in-kernel-modules.patch DELETED ---
--- openafs-1.6.2-Linux-setpag-may-replace-credentials.patch DELETED ---
11 years, 6 months
rpms/openafs/F-18 .cvsignore, 1.11, 1.12 openafs.spec, 1.35, 1.36 sources, 1.16, 1.17
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1253
Modified Files:
.cvsignore openafs.spec sources
Log Message:
* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2.1-1
- Update to OpenAFS 1.6.2.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openafs/F-18/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 14 Feb 2013 23:00:02 -0000 1.11
+++ .cvsignore 1 May 2013 20:10:21 -0000 1.12
@@ -1,2 +1,2 @@
-openafs-1.6.2-src.tar.bz2
-openafs-1.6.2-doc.tar.bz2
+openafs-1.6.2.1-src.tar.bz2
+openafs-1.6.2.1-doc.tar.bz2
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-18/openafs.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- openafs.spec 21 Feb 2013 20:41:29 -0000 1.35
+++ openafs.spec 1 May 2013 20:10:21 -0000 1.36
@@ -12,8 +12,8 @@
Summary: Enterprise Network File System
Name: openafs
-Version: 1.6.2
-Release: 2%{?dist}
+Version: 1.6.2.1
+Release: 1%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -453,9 +453,12 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2.1-1
+- Update to OpenAFS 1.6.2.1
+
* Thu Feb 21 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2-2
- Use newer tarball for 1.6.2 final
-- Fix conditional for %systemd_post on Fedora 17 (RPM Fusion bug #2687)
+- Fix conditional for %%systemd_post on Fedora 17 (RPM Fusion bug #2687)
* Thu Feb 14 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2-1
- Update to OpenAFS 1.6.2 final
Index: sources
===================================================================
RCS file: /cvs/free/rpms/openafs/F-18/sources,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sources 21 Feb 2013 20:41:29 -0000 1.16
+++ sources 1 May 2013 20:10:21 -0000 1.17
@@ -1,2 +1,2 @@
-ab1335f74214487aa363b614fbfa3a00 openafs-1.6.2-src.tar.bz2
-9b0371dc1451c59c47e9519f697a2826 openafs-1.6.2-doc.tar.bz2
+465092bf21ca7704ed9d175506ba6cef openafs-1.6.2.1-src.tar.bz2
+1cbba36d87490cd4cb7294156abc0672 openafs-1.6.2.1-doc.tar.bz2
11 years, 6 months
rpms/openafs/devel openafs-1.6.2-pod.patch, NONE, 1.1 openafs.spec, 1.38, 1.39
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv32708
Modified Files:
openafs.spec
Added Files:
openafs-1.6.2-pod.patch
Log Message:
* Wed May 01 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2.1-2
- Patch for newer Pod::Simple (http://gerrit.openafs.org/9838)
openafs-1.6.2-pod.patch:
pod1/aklog.pod | 16 ++++++++--------
pod1/xstat_cm_test.pod | 6 +++---
pod1/xstat_fs_test.pod | 8 ++++----
pod8/backup_addvolentry.pod | 10 +++++-----
4 files changed, 20 insertions(+), 20 deletions(-)
--- NEW FILE openafs-1.6.2-pod.patch ---
commit 79c55b4a9a7714024a881d47ddf4cbdba8e2ec84
Author: Ken Dreyer <ktdreyer(a)ktdreyer.com>
Date: Tue Apr 30 21:59:32 2013 -0600
doc: quote list items in POD
Recent versions of Pod::Simple complain if we use integers or other
special characters in an =item list. We have a couple bulleted lists
that happen to have integers or other special characters as the list
values. Quote the items with C<> so that Pod::Simple can correctly parse
them again.
Change-Id: If456781fe219b73ae01feb9aef2fb2639e097534
diff --git a/doc/man-pages/pod1/aklog.pod b/doc/man-pages/pod1/aklog.pod
index c0892ca..b7240d1 100644
--- a/doc/man-pages/pod1/aklog.pod
+++ b/doc/man-pages/pod1/aklog.pod
@@ -186,39 +186,39 @@ The exit status of B<aklog> will be one of the following:
=over 3
-=item 0
+=item C<0>
Success -- No error occurred.
-=item 1
+=item C<1>
Usage -- Bad command syntax; accompanied by a usage message.
-=item 2
+=item C<2>
Something failed -- More than one cell or pathname was given on the
command line and at least one failure occurred. A more specific error
status is returned when only one directive is given.
-=item 3
+=item C<3>
AFS -- Unable to get AFS configuration or unable to get information about
a specific cell.
-=item 4
+=item C<4>
Kerberos -- Unable to get tickets for authentication.
-=item 5
+=item C<5>
Token -- Unable to get tokens.
-=item 6
+=item C<6>
Bad pathname -- The path given was not a directory or lstat(2) failed on
some component of the pathname.
-=item 7
+=item C<7>
Miscellaneous -- An internal failure occurred. For example, B<aklog>
returns this if it runs out of memory.
diff --git a/doc/man-pages/pod1/xstat_cm_test.pod b/doc/man-pages/pod1/xstat_cm_test.pod
index 5943133..06d67af 100644
--- a/doc/man-pages/pod1/xstat_cm_test.pod
+++ b/doc/man-pages/pod1/xstat_cm_test.pod
@@ -54,19 +54,19 @@ There are three acceptable values:
=over 4
-=item 0
+=item C<0>
Provides profiling information about the numbers of times different
internal Cache Manager routines were called since the Cache Manager
started.
-=item 1
+=item C<1>
Reports various internal performance statistics related to the Cache
Manager (for example, statistics about how effectively the cache is being
used and the quantity of intracell and intercell data access).
-=item 2
+=item C<2>
Reports all of the internal performance statistics provided by the C<1>
setting, plus some additional, detailed performance figures (for example,
diff --git a/doc/man-pages/pod1/xstat_fs_test.pod b/doc/man-pages/pod1/xstat_fs_test.pod
index 6d99702..7c2257d 100644
--- a/doc/man-pages/pod1/xstat_fs_test.pod
+++ b/doc/man-pages/pod1/xstat_fs_test.pod
@@ -52,25 +52,25 @@ There are four acceptable values:
=over 4
-=item 0
+=item C<0>
Provides profiling information about the numbers of times different
internal File Server routines were called since the File Server
started. This value is not currently implemented; it returns no data.
-=item 1
+=item C<1>
Reports various internal performance statistics related to the File Server
(for example, vnode cache entries and Rx protocol activity).
-=item 2
+=item C<2>
Reports all of the internal performance statistics provided by the C<1>
setting, plus some additional, detailed performance figures about the File
Server (for example, minimum, maximum, and cumulative statistics regarding
File Server RPCs, how long they take to complete, and how many succeed).
-=item 3
+=item C<3>
Reports File Server callback processing statistics since the File Server
started, including the number of call of callbacks added (AddCallBack), the
diff --git a/doc/man-pages/pod8/backup_addvolentry.pod b/doc/man-pages/pod8/backup_addvolentry.pod
index bcd762d..6151cb8 100644
--- a/doc/man-pages/pod8/backup_addvolentry.pod
+++ b/doc/man-pages/pod8/backup_addvolentry.pod
@@ -90,30 +90,30 @@ expressions:
=over 4
-=item .
+=item C<.>
The period matches any single character.
-=item *
+=item C<*>
The asterisk matches zero or more instances of the preceding character.
Combine it with any other alphanumeric character or metacharacter.
-=item [ ]
+=item C<[ ]>
Square brackets around a list of characters match a single instance of any
of the characters, but no other characters; for example, C<[abc]> matches
a single C<a> or C<b> or C<c>, but not C<d> or C<A>. This expression can
be combined with the asterisk.
-=item ^
+=item C<^>
The caret, when used as the first character in a square-bracketed set,
designates a match with any single character I<except> the characters that
follow it; for example, C<[^a]> matches any single character except
lowercase C<a>. This expression can be combined with the asterisk.
-=item \
+=item C<\>
A backslash preceding any of the metacharacters in this list makes it
match its literal value only. For example, the expression C<\.> (backslash
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/devel/openafs.spec,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- openafs.spec 1 May 2013 02:28:09 -0000 1.38
+++ openafs.spec 1 May 2013 19:53:53 -0000 1.39
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.2.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -48,6 +48,10 @@
# Add ExecPostStart "sysnames" helper script.
Patch5: openafs-1.6.1-systemd-execpoststart.patch
+# Support newer Pod::Simple
+# http://gerrit.openafs.org/9838
+Patch6: openafs-1.6.2-pod.patch
+
# Use systemd unit files on Fedora 18 and above.
%if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
%global _with_systemd 1
@@ -139,6 +143,9 @@
%patch4 -p1 -b .envvars
%patch5 -p1 -b .execpoststart
+# Support newer Pod::Simple
+%patch6 -p1
+
# Convert the licese to UTF-8
mv src/LICENSE src/LICENSE~
iconv -f ISO-8859-1 -t UTF8 src/LICENSE~ > src/LICENSE
@@ -453,6 +460,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Wed May 01 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2.1-2
+- Patch for newer Pod::Simple (http://gerrit.openafs.org/9838)
+
* Tue Apr 30 2013 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.2.1-1
- Update to OpenAFS 1.6.2.1
11 years, 6 months
rpms/wl-kmod/F-18 wl-kmod.spec,1.97,1.98
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5351
Modified Files:
wl-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-9.10
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-18/wl-kmod.spec,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- wl-kmod.spec 28 Apr 2013 08:14:22 -0000 1.97
+++ wl-kmod.spec 1 May 2013 12:14:18 -0000 1.98
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 9%{?dist}.9
+Release: 9%{?dist}.10
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -99,6 +99,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-9.10
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-9.9
Rebuilt for kernel
11 years, 7 months
rpms/nvidia-kmod/F-18 nvidia-kmod.spec,1.143,1.144
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5224
Modified Files:
nvidia-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.6
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-18/nvidia-kmod.spec,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- nvidia-kmod.spec 28 Apr 2013 08:14:10 -0000 1.143
+++ nvidia-kmod.spec 1 May 2013 12:14:06 -0000 1.144
@@ -9,7 +9,7 @@
Epoch: 1
Version: 304.88
# Taken over by kmodtool
-Release: 1%{?dist}.5
+Release: 1%{?dist}.6
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.6
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.5
Rebuilt for kernel
11 years, 7 months
rpms/nvidia-173xx-kmod/F-18 nvidia-173xx-kmod.spec,1.78,1.79
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5097
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.11
- Rebuilt for kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18/nvidia-173xx-kmod.spec,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- nvidia-173xx-kmod.spec 28 Apr 2013 08:13:59 -0000 1.78
+++ nvidia-173xx-kmod.spec 1 May 2013 12:13:53 -0000 1.79
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.36
# Taken over by kmodtool
-Release: 5%{?dist}.10
+Release: 5%{?dist}.11
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -98,6 +98,9 @@
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.11
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.10
Rebuilt for kernel
11 years, 7 months
rpms/catalyst-legacy-kmod/F-18 catalyst-legacy-kmod.spec,1.18,1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4969
Modified Files:
catalyst-legacy-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.11
- Rebuilt for kernel
Index: catalyst-legacy-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18/catalyst-legacy-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- catalyst-legacy-kmod.spec 28 Apr 2013 08:12:48 -0000 1.18
+++ catalyst-legacy-kmod.spec 1 May 2013 12:13:42 -0000 1.19
@@ -13,7 +13,7 @@
Name: catalyst-legacy-kmod
Version: 13.1
-Release: 2%{?dist}.10
+Release: 2%{?dist}.11
# Taken over by kmodtool
Summary: AMD display legacy driver kernel module
Group: System Environment/Kernel
@@ -103,6 +103,9 @@
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.11
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.10
Rebuilt for kernel
11 years, 7 months
rpms/catalyst-kmod/F-18 catalyst-kmod.spec,1.48,1.49
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4830
Modified Files:
catalyst-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.11
- Rebuilt for kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-18/catalyst-kmod.spec,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- catalyst-kmod.spec 28 Apr 2013 08:12:30 -0000 1.48
+++ catalyst-kmod.spec 1 May 2013 12:13:30 -0000 1.49
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 13.1
-Release: 2%{?dist}.10
+Release: 2%{?dist}.11
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -101,6 +101,9 @@
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.11
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.10
Rebuilt for kernel
11 years, 7 months
rpms/xtables-addons-kmod/F-18 xtables-addons-kmod.spec,1.56,1.57
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4142
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.2-1.3
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-18/xtables-addons-kmod.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- xtables-addons-kmod.spec 28 Apr 2013 08:12:22 -0000 1.56
+++ xtables-addons-kmod.spec 1 May 2013 12:03:11 -0000 1.57
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.2
-Release: 1%{?dist}.2
+Release: 1%{?dist}.3
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Wed May 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.2-1.3
+- Rebuilt for kernel
+
* Sun Apr 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.2-1.2
Rebuilt for kernel
11 years, 7 months