Hello community,

here is the log from the commit of package linux-glibc-devel for 
openSUSE:Factory checked in at 2011-12-25 17:36:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/linux-glibc-devel (Old)
 and      /work/SRC/openSUSE:Factory/.linux-glibc-devel.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "linux-glibc-devel", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/linux-glibc-devel/linux-glibc-devel.changes      
2011-09-23 02:11:53.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.linux-glibc-devel.new/linux-glibc-devel.changes 
2011-12-25 17:36:48.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Dec 21 13:20:59 CET 2011 - [email protected]
+
+- update to 3.1 headers:
+  * fixes missing REQ_META
+
+-------------------------------------------------------------------

Old:
----
  linux-glibc-devel-3.1_rc5.tar.bz2

New:
----
  linux-glibc-devel-3.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ linux-glibc-devel.spec ++++++
--- /var/tmp/diff_new_pack.koSJsX/_old  2011-12-25 17:36:49.000000000 +0100
+++ /var/tmp/diff_new_pack.koSJsX/_new  2011-12-25 17:36:49.000000000 +0100
@@ -15,18 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 BuildRequires:  fdupes
 
 Name:           linux-glibc-devel
-License:        GPL-2.0
 Summary:        Linux headers for userspace development
+License:        GPL-2.0
 Group:          Development/Libraries/C and C++
 BuildArch:      noarch
-# this confusing version number has no meaning
-Version:        3.1_rc5
-Release:        5
+Version:        3.1
+Release:        0
 Url:            http://www.kernel.org/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Provides:       kernel-headers 
@@ -47,7 +45,7 @@
 
 
 %prep
-%setup -q -n linux-glibc-devel-3.1-rc5
+%setup -q -n linux-glibc-devel-%version
 %patch1
 
 %build

++++++ linux-glibc-devel-3.1_rc5.tar.bz2 -> linux-glibc-devel-3.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/linux-glibc-devel-3.1-rc5/usr/include/asm-openrisc/sigcontext.h 
new/linux-glibc-devel-3.1/usr/include/asm-openrisc/sigcontext.h
--- old/linux-glibc-devel-3.1-rc5/usr/include/asm-openrisc/sigcontext.h 
2011-09-06 16:49:31.000000000 +0200
+++ new/linux-glibc-devel-3.1/usr/include/asm-openrisc/sigcontext.h     
2011-12-21 13:14:53.000000000 +0100
@@ -23,16 +23,11 @@
 
 /* This struct is saved by setup_frame in signal.c, to keep the current
    context while a signal handler is executed. It's restored by sys_sigreturn.
-
-   To keep things simple, we use pt_regs here even though normally you just
-   specify the list of regs to save. Then we can use copy_from_user on the
-   entire regs instead of a bunch of get_user's as well...
 */
 
 struct sigcontext {
-       struct pt_regs regs;  /* needs to be first */
+       struct user_regs_struct regs;  /* needs to be first */
        unsigned long oldmask;
-       unsigned long usp;    /* usp before stacking this gunk on it */
 };
 
 #endif /* __ASM_OPENRISC_SIGCONTEXT_H */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/linux-glibc-devel-3.1-rc5/usr/include/linux/blk_types.h 
new/linux-glibc-devel-3.1/usr/include/linux/blk_types.h
--- old/linux-glibc-devel-3.1-rc5/usr/include/linux/blk_types.h 2011-09-06 
16:50:05.000000000 +0200
+++ new/linux-glibc-devel-3.1/usr/include/linux/blk_types.h     2011-12-21 
13:15:19.000000000 +0100
@@ -124,6 +124,7 @@
 
        __REQ_SYNC,             /* request is sync (sync write or read) */
        __REQ_META,             /* metadata io request */
+       __REQ_PRIO,             /* boost priority in cfq */
        __REQ_DISCARD,          /* request to discard sectors */
        __REQ_SECURE,           /* secure discard (used with __REQ_DISCARD) */
 
@@ -161,14 +162,15 @@
 #define REQ_FAILFAST_DRIVER    (1 << __REQ_FAILFAST_DRIVER)
 #define REQ_SYNC               (1 << __REQ_SYNC)
 #define REQ_META               (1 << __REQ_META)
+#define REQ_PRIO               (1 << __REQ_PRIO)
 #define REQ_DISCARD            (1 << __REQ_DISCARD)
 #define REQ_NOIDLE             (1 << __REQ_NOIDLE)
 
 #define REQ_FAILFAST_MASK \
        (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
 #define REQ_COMMON_MASK \
-       (REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_DISCARD | \
-        REQ_NOIDLE | REQ_FLUSH | REQ_FUA | REQ_SECURE)
+       (REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_PRIO | \
+        REQ_DISCARD | REQ_NOIDLE | REQ_FLUSH | REQ_FUA | REQ_SECURE)
 #define REQ_CLONE_MASK         REQ_COMMON_MASK
 
 #define REQ_RAHEAD             (1 << __REQ_RAHEAD)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linux-glibc-devel-3.1-rc5/usr/include/linux/fs.h 
new/linux-glibc-devel-3.1/usr/include/linux/fs.h
--- old/linux-glibc-devel-3.1-rc5/usr/include/linux/fs.h        2011-09-06 
16:50:05.000000000 +0200
+++ new/linux-glibc-devel-3.1/usr/include/linux/fs.h    2011-12-21 
13:15:19.000000000 +0100
@@ -162,10 +162,8 @@
 #define READA                  RWA_MASK
 
 #define READ_SYNC              (READ | REQ_SYNC)
-#define READ_META              (READ | REQ_META)
 #define WRITE_SYNC             (WRITE | REQ_SYNC | REQ_NOIDLE)
 #define WRITE_ODIRECT          (WRITE | REQ_SYNC)
-#define WRITE_META             (WRITE | REQ_META)
 #define WRITE_FLUSH            (WRITE | REQ_SYNC | REQ_NOIDLE | REQ_FLUSH)
 #define WRITE_FUA              (WRITE | REQ_SYNC | REQ_NOIDLE | REQ_FUA)
 #define WRITE_FLUSH_FUA                (WRITE | REQ_SYNC | REQ_NOIDLE | 
REQ_FLUSH | REQ_FUA)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linux-glibc-devel-3.1-rc5/usr/include/linux/kvm.h 
new/linux-glibc-devel-3.1/usr/include/linux/kvm.h
--- old/linux-glibc-devel-3.1-rc5/usr/include/linux/kvm.h       2011-09-06 
16:50:06.000000000 +0200
+++ new/linux-glibc-devel-3.1/usr/include/linux/kvm.h   2011-12-21 
13:15:20.000000000 +0100
@@ -553,6 +553,7 @@
 #define KVM_CAP_SPAPR_TCE 63
 #define KVM_CAP_PPC_SMT 64
 #define KVM_CAP_PPC_RMA        65
+#define KVM_CAP_S390_GMAP 71
 
 #ifdef KVM_CAP_IRQ_ROUTING
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linux-glibc-devel-3.1-rc5/usr/include/linux/snmp.h 
new/linux-glibc-devel-3.1/usr/include/linux/snmp.h
--- old/linux-glibc-devel-3.1-rc5/usr/include/linux/snmp.h      2011-09-06 
16:50:06.000000000 +0200
+++ new/linux-glibc-devel-3.1/usr/include/linux/snmp.h  2011-12-21 
13:15:20.000000000 +0100
@@ -231,6 +231,8 @@
        LINUX_MIB_TCPDEFERACCEPTDROP,
        LINUX_MIB_IPRPFILTER, /* IP Reverse Path Filter (rp_filter) */
        LINUX_MIB_TCPTIMEWAITOVERFLOW,          /* TCPTimeWaitOverflow */
+       LINUX_MIB_TCPREQQFULLDOCOOKIES,         /* TCPReqQFullDoCookies */
+       LINUX_MIB_TCPREQQFULLDROP,              /* TCPReqQFullDrop */
        __LINUX_MIB_MAX
 };
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to