File tree Expand file tree Collapse file tree 5 files changed +0
-18
lines changed Expand file tree Collapse file tree 5 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,6 @@ xfs_buf_allocate_memory(
293
293
size_t nbytes , offset ;
294
294
gfp_t gfp_mask = xb_to_gfp (flags );
295
295
unsigned short page_count , i ;
296
- pgoff_t first ;
297
296
xfs_off_t end ;
298
297
int error ;
299
298
@@ -333,7 +332,6 @@ xfs_buf_allocate_memory(
333
332
return error ;
334
333
335
334
offset = bp -> b_offset ;
336
- first = bp -> b_file_offset >> PAGE_SHIFT ;
337
335
bp -> b_flags |= _XBF_PAGES ;
338
336
339
337
for (i = 0 ; i < bp -> b_page_count ; i ++ ) {
Original file line number Diff line number Diff line change @@ -461,12 +461,10 @@ xfs_qm_dqflush_all(
461
461
struct xfs_quotainfo * q = mp -> m_quotainfo ;
462
462
int recl ;
463
463
struct xfs_dquot * dqp ;
464
- int niters ;
465
464
int error ;
466
465
467
466
if (!q )
468
467
return 0 ;
469
- niters = 0 ;
470
468
again :
471
469
mutex_lock (& q -> qi_dqlist_lock );
472
470
list_for_each_entry (dqp , & q -> qi_dqlist , q_mplist ) {
@@ -1314,14 +1312,9 @@ xfs_qm_dqiter_bufs(
1314
1312
{
1315
1313
xfs_buf_t * bp ;
1316
1314
int error ;
1317
- int notcommitted ;
1318
- int incr ;
1319
1315
int type ;
1320
1316
1321
1317
ASSERT (blkcnt > 0 );
1322
- notcommitted = 0 ;
1323
- incr = (blkcnt > XFS_QM_MAX_DQCLUSTER_LOGSZ ) ?
1324
- XFS_QM_MAX_DQCLUSTER_LOGSZ : blkcnt ;
1325
1318
type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1326
1319
(flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP );
1327
1320
error = 0 ;
Original file line number Diff line number Diff line change @@ -65,11 +65,6 @@ extern kmem_zone_t *qm_dqtrxzone;
65
65
* block in the dquot/xqm code.
66
66
*/
67
67
#define XFS_DQUOT_CLUSTER_SIZE_FSB (xfs_filblks_t)1
68
- /*
69
- * When doing a quotacheck, we log dquot clusters of this many FSBs at most
70
- * in a single transaction. We don't want to ask for too huge a log reservation.
71
- */
72
- #define XFS_QM_MAX_DQCLUSTER_LOGSZ 3
73
68
74
69
typedef xfs_dqhash_t xfs_dqlist_t ;
75
70
Original file line number Diff line number Diff line change @@ -313,14 +313,12 @@ xfs_qm_scall_quotaon(
313
313
{
314
314
int error ;
315
315
uint qf ;
316
- uint accflags ;
317
316
__int64_t sbflags ;
318
317
319
318
flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD );
320
319
/*
321
320
* Switching on quota accounting must be done at mount time.
322
321
*/
323
- accflags = flags & XFS_ALL_QUOTA_ACCT ;
324
322
flags &= ~(XFS_ALL_QUOTA_ACCT );
325
323
326
324
sbflags = 0 ;
Original file line number Diff line number Diff line change @@ -204,7 +204,6 @@ xfs_bulkstat(
204
204
xfs_agi_t * agi ; /* agi header data */
205
205
xfs_agino_t agino ; /* inode # in allocation group */
206
206
xfs_agnumber_t agno ; /* allocation group number */
207
- xfs_daddr_t bno ; /* inode cluster start daddr */
208
207
int chunkidx ; /* current index into inode chunk */
209
208
int clustidx ; /* current index into inode cluster */
210
209
xfs_btree_cur_t * cur ; /* btree cursor for ialloc btree */
@@ -463,7 +462,6 @@ xfs_bulkstat(
463
462
mp -> m_sb .sb_inopblog );
464
463
}
465
464
ino = XFS_AGINO_TO_INO (mp , agno , agino );
466
- bno = XFS_AGB_TO_DADDR (mp , agno , agbno );
467
465
/*
468
466
* Skip if this inode is free.
469
467
*/
You can’t perform that action at this time.
0 commit comments